You could use this formula:
Formula:
=RIGHT(F1,LEN(F1)-FIND("|",SUBSTITUTE(F1,":","|",LEN(F1)-LEN(SUBSTITUTE(F1,":","")))))
Or you could use a small UDF:
Which can be used as:![]()
Function RightText(ByVal MyText As String, MyCharacter As String) RightText = Right(MyText, Len(MyText) - InStrRev(MyText, MyCharacter)) End Function
Formula:
=RightText(F1,":")
Bookmarks