How Do I Put Double Quotes In A String In

[Solved] How Do I Put Double Quotes In A String In | Vb - Code Explorer | yomemimo.com
Question : xl vba 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 how do i put double quotes in a string in xl vba

Code Explorer Popular Question For Vb