amazingly there is a reverse string functtion in vba. Dont have it installed here but look for revstr, revstring, etc.
Perform that and then search for \ (pos=instr(MyString,"\"))
now flip the string back again (RevStr)
Extract right "pos" most chars (strResult=right(MyString,pos)
I reckon something like that would be the go,
JB