Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Access report duplicating a record

Status
Not open for further replies.

saepl

Programmer
Jun 9, 2008
3
US
Hello,

I am creating a group tour registration database for a non-profit organisation. The organisation has 5 different types of group tours they offer and one of the tours is a two day tour. I have created a report that summarizes all the tours grouped by day. The problem is that I need the two day tour to show up for both days. Any ideas how I can do this?
 
Sounds like you need to tweak your database to have a "start date" & "end date" fields; or, you need a unique identifier for a key if you want to have two "date" records for the two-day tour.

"Time flies like an arrow; fruit flies like a banana."
 
I have been thinking of having a start date and an end date. How would I set up my query to only show the end date ones where the start date is different?
 
I think better would be group on start date so you get two detail lines for the two-day tour, and display end date on the report when it = start date.

"Time flies like an arrow; fruit flies like a banana."
 
Where do I program it to only show if the end date != the start date? Is this done at the query or report level?
 
You could put it in the report's group header format or detail format events.

"Time flies like an arrow; fruit flies like a banana."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top