inserting commas in form between 2 text boxes

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.
 
J

Jeff Boyce

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
 
K

KARL DEWEY

Do not use a 'comma' field. Use a calculated field --
Full_Name: [lastname] &", " & [firstname]
Or
Something: [Name] & ", " & [Department]
 

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