Showing related tags and posts accross the entire site.
-
Gary I always use a UDF (User Defined Function) like that below. Public Function FindLastSpace(sInput As String ) As String Dim iLastSpacePos As Integer Dim iLengthOfString As Integer Application.Volatile True iLastSpacePos = InStrRev(sInput, " " , -1) iLengthOfString = Len(sInput) FindLastSpace...