User login

Reply to comment

Remove Last Character From A String

This VBA function will remove the last character from a string:

Function CutOffLastChar(str As String)
CutOffLastChar = Left(str, Len(str) - 1)
End Function

Reply

The content of this field is kept private and will not be shown publicly.