I have a string markExists = "vbCrLf" which I want to use in the following:
markExists & "freddy mercury" & markExists
But this displays as
vbCrLffreddymercuryvbCrLf.
How can I make this display as carriage return line feed. Basically making string into vbCrLf constant.
markExists & "freddy mercury" & markExists
But this displays as
vbCrLffreddymercuryvbCrLf.
How can I make this display as carriage return line feed. Basically making string into vbCrLf constant.