I have the following VBA code:
This is the cell it is looking at:
I want the formula to extract the first characters before the ~ regardless if it is 3 or 4 or however many characters.
Code:
AddFormula TopLeft.Offset(1, 1).Resize(RowCount, 1), "=IFERROR(LEFT(AA" & Row & ",FIND(""`"",AA" & Row & ")-1),"""")"
This is the cell it is looking at:
Code:
MECH~CDA-CUP-PF~1 - CUP0915.2XL - Copper Reducer (P)
I want the formula to extract the first characters before the ~ regardless if it is 3 or 4 or however many characters.