Need excel formula help_RIGHT(F6,FIND(".",F6,1)) does not work.

pedie

Well-known Member
Joined
Apr 28, 2010
Messages
3,875
i need to get the text coming after "." like xlsm from book1.xlsm
I used this and also tried others few but not givving accurate answer....please check it for me...
Thanks

'=RIGHT(F6,FIND(".",F6,1))
'=RIGHT(RIGHT(F6,FIND(".",F6,5)),4)
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Check out the MID function. You should land up with something along the lines of MID(...,FIND(...),...) where you have to provide the appropriate cell references or values in the ... parts.
 
Upvote 0
Check out the MID function. You should land up with something along the lines of MID(...,FIND(...),...) where you have to provide the appropriate cell references or values in the ... parts.



the earlier formula works perfect but thought i'd just give a try....'=MID(C5,FIND(".",C5,1)..and this formula does not work...
 
Upvote 0
the earlier formula works perfect but thought i'd just give a try....'=MID(C5,FIND(".",C5,1)..and this formula does not work...

To do it with mid

=mid(c5,find(".",c5)+1,len(c5))

Think I prefer Barry's suggestion though, looks much cleaner than any other method.
 
Upvote 0
And another way with MID (1 less calculation)

=MID(C5,FIND(".",C5,1)+1*1,5)

But I agree with jason:

Barry's is even shorter with only 4 calculations
 
Upvote 0

Forum statistics

Threads
1,224,596
Messages
6,179,807
Members
452,944
Latest member
2558216095

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