inserting commas in form between 2 text boxes

  • Thread starter Thread starter ARamirez
  • Start date Start date
A

ARamirez

in a form document, how can i insert a comma between two different fields
where the field can shrink or grow as needed without losing the placement of
the comma field? i.e.

lastname, firstname or Name, Department

I have this set up as three different fields.
 
Forms display data on the screen; reports display data in printed output.

When you say "a form document", do you mean a form or a report?

Regards

Jeff Boyce
Microsoft Office/Access MVP
 
Do not use a 'comma' field. Use a calculated field --
Full_Name: [lastname] &", " & [firstname]
Or
Something: [Name] & ", " & [Department]
 
Back
Top