Answers for "double quotes in vba strings"

VBA
5

xl vba double quotes in string literal

'The double quotation mark (") is ASCII character 34, so the 
'following Excel formula works:

=CHAR(34) & "Excel rocks." & CHAR(34)
'This formula will display:  "Excel rocks."

'Using triple double quotes has the same result:
="""Excel rocks."""
Posted by: Guest on March-28-2020
3

vba double quote

Debug.Print """"        ' "
Debug.Print Chr(34)     ' "
Posted by: Guest on January-24-2021

Code answers related to "double quotes in vba strings"

Code answers related to "VBA"

Browse Popular Code Answers by Language