In column A I have a load of name that look like this
[John Smith]
I still want them in A but the [] removed...
Another option: =MID(A1,2,LEN(A1)-2)
=MID(A1,2,LEN(A1)-2)
Or this (for fun): =RIGHT(LEFT(A1,LEN(A1)-1),LEN(LEFT(A1,LEN(A1)-1))-1)
=RIGHT(LEFT(A1,LEN(A1)-1),LEN(LEFT(A1,LEN(A1)-1))-1)