I currently have a piece of VBA code that looks for the first two characters on the left which is:
Range("EB5").Select
ActiveCell.FormulaR1C1 = "=LEFT(Input!R[-2]C[-92],2)"
Range("EB5").Select
Selection.AutoFill Destination:=Range("EB5:EB" & rownumfinal)
I however want this to find the characters on the left until there is a space.
Could anyone advise on how to do this?