I want to remove the numbers and letters on the left on a string.
I have some strings which read as such:
ATT 2393747394
AT&T 2732372Tom
CAN Air38263
AA3333333
I tried to use a Left function with InStr within it. Left([Title],(InStr([Title],"#")-1)) The result of that function deleted the whole string. I was wondering whether there is a way to get what I seek.
I seek this result:
ATT
AT&T
CAN Air
AA
Thanks in advance.
I have some strings which read as such:
ATT 2393747394
AT&T 2732372Tom
CAN Air38263
AA3333333
I tried to use a Left function with InStr within it. Left([Title],(InStr([Title],"#")-1)) The result of that function deleted the whole string. I was wondering whether there is a way to get what I seek.
I seek this result:
ATT
AT&T
CAN Air
AA
Thanks in advance.
Comment