How do I insert a comma 10 characters to the left of a string of characters

Wholden21

New Member
Joined
Aug 8, 2018
Messages
3
Example
I have multiple addresses similar to the below. I need to insert a comma 10 spaces to the left (after the city) so that I can use the delimeted to break it out into separate columns for city, state, zip (there is currently no comma after city)

Cleveland oh, 45120
e Rutherford nj, 06034
Tecumseh ri, 06044
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Welcome to the Board!

Try this formula (for an entry in cell A1):
Code:
=LEFT(A1,LEN(A1)-10) & "," & RIGHT(A1,10)
 
Upvote 0
You are welcome.
Glad I was able to help!:)
 
Upvote 0
One other question … sorry - how do I convert that information now into actual "data" so that I can use the delimited function? Thank you
 
Upvote 0
Select the column with the formulas, do a Copy -> Paste Special -> Values and click enter.
 
Upvote 0

Forum statistics

Threads
1,216,109
Messages
6,128,883
Members
449,477
Latest member
panjongshing

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