Example code:
Dim a As String a = 1234,5678,9123
I want to add literal double quotes to the variable a
a
Expected Output
The current answers are correct and valid but sometimes the following can improve readability:
a = Chr$(34) & "1234,5678,9123" & Chr$(34)