Display all characters after /

Rubber Beaked Woodpecker

Board Regular
Joined
Aug 30, 2015
Messages
203
Office Version
  1. 2021
Hi all

I thought that the following would be a relatively simple task but for some reason I am having trouble.

In N3 I have the fraction 1/8. I would like all the characters to the right of / to be displayed in O3 and have tried the following formula; =RIGHT(N3,SEARCH("/",N3))

However this returns /8 instead of the intended 8.

Where am I going wrong please.

TIA

RBW
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
You were almost there:

Excel Formula:
=RIGHT(N3,SEARCH("/",N3)+1)

Search returns the index of the character searched for. To return everything after that add 1
 
Upvote 0
Maybe the formula in O3
Book2
NOP
31/881/8
b
Cell Formulas
RangeFormula
O3O3=RIGHT(N3,LEN(N3)-SEARCH("/",N3))
P3P3=RIGHT(N3,SEARCH("/",N3)+1)
 
Upvote 1
Solution

Forum statistics

Threads
1,215,136
Messages
6,123,251
Members
449,093
Latest member
Vincent Khandagale

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top