Put A Space Between 2 right characters

  • Thread starter Thread starter carl
  • Start date Start date
C

carl

I have some symbols that look like this

ABC
ABCD
ABCDE

I need a formula that can make this conversion:

A_BC (1 spaces between A and BC)
AB_CD (1 space between AB and CD)
ABC_DE (1 space between ABC and DE)

So I always need the 2 right most characters separated by a space from the
other characters.

I hope I explained this ok.

Thank you in advance.
 
Try this:

=LEFT(A1,LEN(A1)-2)&"_"&RIGHT(A1,2)

assuming your text is in A1. Copy down as required.

Hope this helps.

Pete
 
Back
Top