In VBA code you can make your code more readable by breaking up long lines into shorter ones
a = "this is a very long string that can be separated " & _ "by the _ (underscore) symbol " & _ "Hope you liked it." Note that there isn't a carriage return added added to the code. To do that add vbCRLF and it will look the following: a = "this is a very long string that can be separated " & vbCRLF _ "by the _ (underscore) symbol " & vbCRLF _ "Hope you liked it." |