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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top