I have document paths, including file name, in a PATH field:
MyDocs\Pictures\honeymoonIsOVer.jpg
MyDocs\WorkStuff\Accounting\Quarterly\FakeInvoices.xls
MyDocs\HideFromTheBoss\NotPron\specs.jpg
So, the folder structure will vary, but the text I am looking for is everything after the last backslash. This gets me what I want in Excel:
=RIGHT(A2,LEN(A2)-FIND(CHAR(1),SUBSTITUTE(A2,".",CHAR(1),LEN(A2)-LEN(SUBSTITUTE(A2,".","")))))
MyDocs\Pictures\honeymoonIsOVer.jpg
MyDocs\WorkStuff\Accounting\Quarterly\FakeInvoices.xls
MyDocs\HideFromTheBoss\NotPron\specs.jpg
So, the folder structure will vary, but the text I am looking for is everything after the last backslash. This gets me what I want in Excel:
=RIGHT(A2,LEN(A2)-FIND(CHAR(1),SUBSTITUTE(A2,".",CHAR(1),LEN(A2)-LEN(SUBSTITUTE(A2,".","")))))