I am trying to extract another set of characters from this same line:
In this piece of code I need to extract the CDA. I have tried changing the character to match the - but no luck so far.
Any ideas?
Code:
MECH~CDA-CUP-PF~1 - CUP0915.2XL - Copper Reducer (P)
Code:
AddFormula TopLeft.Offset(1, 2).Resize(RowCount, 1), "=IFERROR(MID(AA" & Row & ",FIND(""`"",AA" & Row & ")+1,FIND(""~"",AA" & Row & ")-1-FIND(""`"",AA" & Row & ")),"""")"
In this piece of code I need to extract the CDA. I have tried changing the character to match the - but no luck so far.
Any ideas?