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

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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 & """ "
 
Back
Top