In the attached sample sheet I need to fill the column C with the last two degits of the column B.
Example:
B3 value is 01/25
I need to auto fill the C3 as 25
Please help me.
In the attached sample sheet I need to fill the column C with the last two degits of the column B.
Example:
B3 value is 01/25
I need to auto fill the C3 as 25
Please help me.
Last edited by smartcard; 12-26-2010 at 05:02 AM.
If it's always really just the last two characters, then:
=RIGHT(B3,2)
If it's really "all the characters after the "/" character, then:
=MID(B3, FIND("/", B3)+1,LEN(B3))
_________________
Microsoft MVP 2010 - Excel
Visit: Jerry Beaucaire's Excel Files & Macros
If you've been given good help, use theicon below to give reputation feedback, it is appreciated.
Always put your code between code tags. [CODE] your code here [/CODE]
?None of us is as good as all of us? - Ray Kroc
?Actually, I *am* a rocket scientist.? - JB (little ones count!)
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks