Add Spaces

How_Do_I

Well-known Member
Joined
Oct 23, 2009
Messages
1,831
Office Version
  1. 2010
Platform
  1. Windows
Hello, what formula could I use to add a space between letters please... =LEFT(F3,1)&" "&RIGHT(F3,LEN(F3)-1) is working for two letters but I can't work out what formula to use to get this working for 3 letters...

Excel Workbook
A
6HT
7HTT
Sheet1
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Hello, what formula could I use to add a space between letters please... =LEFT(F3,1)&" "&RIGHT(F3,LEN(F3)-1) is working for two letters but I can't work out what formula to use to get this working for 3 letters...
How many letters maximum will you ever have to do this with?
 
Upvote 0
Hello Rick... I'll work around any more than 3... So I would like to get it working for 3 initials please...
 
Upvote 0
It might not be that simple... how many letters maximum could you have?

I love the work's of art you come up with, it's a shame when you end up with formulas like this:

Code:
=IF(LEN(F3)=3,LEFT(F3,1)&" "&MID(F3,2,1)&" "&RIGHT(F3,1),LEFT(F3,1)&" "&RIGHT(F3,LEN(F3)-1))

What would you do for say "12 characters" Rick?
 
Upvote 0
I can't give a number Rick, the letters are the initials of people... The formula that TonyUK72 has kindly added is working for people with 1, 2 and 3 initials... Thanks to you both for your assistance so far...
 
Upvote 0

Forum statistics

Threads
1,214,617
Messages
6,120,541
Members
448,970
Latest member
kennimack

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