Xlvba Double Quotes In String Literal

[Solved] Xlvba Double Quotes In String Literal | Vb - Code Explorer | yomemimo.com
Question : xlvba double quotes in string literal

Answered by : daniel-ferry

'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."""

Source : http://academy.excelhero.com/ | Last Update : Sat, 04 Apr 20

Answers related to xlvba double quotes in string literal

Code Explorer Popular Question For Vb