How to add spaces to the both sides of text in a cell

sami9

Board Regular
Joined
Feb 12, 2014
Messages
50
I need to add spaces in the beginning and end of a text. e.g Text is John. I need 4 spaces before J and 7 spaces after n. How to accomplish this.
 
I see have you replace ; with , in your

Code:
H5=[COLOR=#333333]REPT(" ",4)&G5&REPT(" [/COLOR]",7)
 
Last edited:
Upvote 0

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
if you data in G5 and the result in H5 then
Code:
H5=[COLOR=#333333]REPT(" ";4)&G5&REPT(" ";7)[/COLOR]

Sorry my data was in H5. But I tried the above by keeping data in G5 and formula is H5 but still it is not working.
 
Upvote 0
If you data in H5 then
Code:
=[COLOR=#333333]REPT(" ",4)&H5&REPT(" ",7)[/COLOR]
 
Upvote 0

Forum statistics

Threads
1,224,820
Messages
6,181,160
Members
453,021
Latest member
Justyna P

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