Combining fields in a report

S

Steve Hayes

How can I combine fields in a report?

For example, if a date has been entered in three separate fields for Year,
Month and Day, and I want to print it in a report in the form of YYYY-MM-DD,
how do I create the combined field?
 
T

Tom Lake

Steve Hayes said:
How can I combine fields in a report?

For example, if a date has been entered in three separate fields for Year,
Month and Day, and I want to print it in a report in the form of
YYYY-MM-DD,
how do I create the combined field?

Create a fourth field with record source like this:

= [YearField] & "-" & [MonthField] & "-" & [DayField]

Replace the sample field names I gave with your own actual field names.

Tom Lake
 

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

Similar Threads


Top