I have a string with value "NA - Phase 1: Preliminary Phase" and I want to remove all the words before the dash "-".
Here is my current code, I am able to remove the string, but it keeps the "-", which I also want to remove.
indexOfThey = InStr(1, s, "-")
finalString = VBA.Mid(s, indexOfThey)
wksSourced.Cells(lastrowd + 1, 9).Value = finalString
Mid(s, indexOfThey + 2)