I have a lot of strings that follow the same format.
Steps:
1.) Remove the first 5 charcters, T4290.
2.) Remove leading spaces from Benareby. Maybe with TRIM.
3.) Remove ( kommun) and keep Härryda
I am stuck at step 3 right now?I have tried using REPLACE.
Desired output is
Code:
[COLOR=#3D3D3D][FONT=arial]T4290 Benareby (Härryda kommun)[/FONT][/COLOR]
Steps:
1.) Remove the first 5 charcters, T4290.
Code:
=RIGHT(A2;LEN(A2)-6)
2.) Remove leading spaces from Benareby. Maybe with TRIM.
Code:
TRIM(B2)
3.) Remove ( kommun) and keep Härryda
I am stuck at step 3 right now?I have tried using REPLACE.
Desired output is
Code:
Column A Column B
Benareby Härryda
Last edited: