SyntaxFix
Write A Post
Hire A Developer
Questions
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