Extract middle initial

R

rocket0612

If in cell A1 is a name in the format "John J Jackson", how can I retur
the middle inital in A2?

thank
 
B

BenjieLop

rocket0612 said:
If in cell A1 is a name in the format "John J Jackson", how can I return
the middle inital in A2?

thanks


=MID(A1,FIND(\" \",A1)+1,1)

should be your formula.

Regards.
 
R

rocket0612

thanks alot.

Bob, as the name is a variable your won't work but maybe I should have
said that!

thanks alot
 
Top