Sorry I\'m a noob in excel and need help with this. Say I have the following text in my excel.
If you don't mind a bit of vba, then InStrRev was almost tailor made for cases like these:
InStrRev
Public Function Remove_After(ByVal what As String, ByVal where As Range) As String Remove_After = Left(where, InStrRev(where, what) - 1) End Function