How to find the first instance of a specif character and get the left value using vba
a= "\abc\123\abc\test\test123\123\1248\1234\Dec 03"
I need the output as "\abc\123\abc\test\test123\123\1248\1234", that is it should detect the first \ and get remaining string from the left using VBA.
Thank you.