Link to home
Start Free TrialLog in
Avatar of tramworksnick
tramworksnick

asked on

how can I remove symbols ( and ' from excel data

Hi

How can I remove symbols surrounding text ('text' or 'text' from all entries in a column in excel - I'm using Excel 2011 Mac

Hope this is really easy but I'm not familiar with excel - I have 3 columns of data - first starts ('text' second and third each start with 'text'

thanks
ASKER CERTIFIED SOLUTION
Avatar of WayneATaylor
WayneATaylor
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of tramworksnick
tramworksnick

ASKER

thanks
Avatar of telyni19
For reference, you could also do it with a formula:

For the first column:
=LEFT(RIGHT(A1,LEN(A1)-2),LEN(A1)-3)
For the other two columns:
=LEFT(RIGHT(A1,LEN(A1)-1),LEN(A1)-2)

You could put these formulas at the top of a new column and drag down to get the correct results for all cells in column A.