I have the following formula in the column B. It trims ":" and everything before that from A2 and places it in B2. Was hoping to get vba which will
a) do the same for all cells in the column B by looking at same row cell in the column A
b) Delimiter can be any cell from P1 to P10 and not necessarily ":".
c) Delimiter can be more than one word.
d) it is not case sensitive.
Thank you.
=TRIM(MID(A2,SEARCH(";",A2)+LEN(";"),255))
a) do the same for all cells in the column B by looking at same row cell in the column A
b) Delimiter can be any cell from P1 to P10 and not necessarily ":".
c) Delimiter can be more than one word.
d) it is not case sensitive.
Thank you.
=TRIM(MID(A2,SEARCH(";",A2)+LEN(";"),255))