Home > Mobile >  How do I add comma between each single quote in excel?
How do I add comma between each single quote in excel?

Time:10-21

I have a long string of words in an excel file

'MemberId''ProgramCode''Carrier''PolicyNumber''PolicyHolderName''EndorsementDate''DepartureDate''PolicyEffectiveDate''PolicyExpirationDate''NewRenew''StateCode''StreetAddress''City''ZipCode''CoverageType''PremiumPeriodBeginDate''PremiumPeriodEndDate'....

There are no spaces between these words so I cannot replace ' ' with ','. I just want my final list to look like the below with commas seperating each word in quotes-

'MemberId','ProgramCode','Carrier','PolicyNumber','PolicyHolderName','EndorsementDate','DepartureDate','PolicyEffectiveDate','PolicyExpirationDate','NewRenew'...

How do I achieve this?

CodePudding user response:

If your values are in A1 ...

=SUBSTITUTE(A1,"''","','")
  • Related