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

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
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
You are very well come
And thank you for replay
 
Upvote 0

Forum statistics

Threads
1,214,786
Messages
6,121,553
Members
449,038
Latest member
Guest1337

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