How to include double quotes in an expression

B

BRC

I am trying to create an expression in a query that includes the following
elements
" a double quote
firstname
space
lastname
" another double quote
< a less than sign
email address
greater than sign
I can't find an explanation of how to enclose the firstname space lastname
in double quotes.
any suggestions would be appreciated.
Thanks BRC
 
K

Ken Snell \(MVP\)

Double up the double quotes:

MyString = "My ""Name"" is Bill"

yields

My "Name" is Bill

as the resulting string.
 
Top