How do I add quotes as a constant in an expression?

D

DenieceTX

example: I want quotes at the end of a number. If I want a space I put the
field name in, then & then " ", but if I want quotes and a space, I tried &
"" " and this gives me an error
 
M

Marshall Barton

DenieceTX said:
example: I want quotes at the end of a number. If I want a space I put the
field name in, then & then " ", but if I want quotes and a space, I tried &
"" " and this gives me an error


Inside quotes you need to use two quotes:

field & """ "
 
Top