Query

A

Aaron Neunz

I have a STNUM field and a STNAME field I need to quickly append the STNUM
field to the STNAME field.
 
L

Les

Aaron,
If you just want the 2 fields concatenated in a new
field, create a new expression in query like:

Confld: STNUM & " " & STNAME
 
Top