I want to Remove the Line Break from the string if my string Ends with Line Break.
Sub linebreak(myString) If Len(myString) <> 0 Then If Rig
Private Sub Form_Load() Dim s As String s = "test" & vbCrLf & "this" & vbCrLf & vbCrLf Debug.Print (s & Len(s)) s = Left(s, Len(s) - Len(vbCrLf)) Debug.Print (s & Len(s)) End Sub