Example code:
Dim a As String a = 1234,5678,9123
I want to add literal double quotes to the variable a
a
Expected Output
If you want to include " in a string, supply "" where you want the quote to appear. So your example should read...
"
""
a = """1234,5678,9123"""