how do I send Chr$(10) to a msgbox so I can have a sentence in a msgbox on it's own line?
J joe user Aug 2, 2004 #1 how do I send Chr$(10) to a msgbox so I can have a sentence in a msgbox on it's own line?
C Chip Pearson Aug 2, 2004 #2 Try something like the following: MsgBox "This is line 1" & vbCrLf & _ "This is line 2" -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com
Try something like the following: MsgBox "This is line 1" & vbCrLf & _ "This is line 2" -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com