database wizard leaves spaces

W

Will

I am using the database wizard for a reservations system for a charter
fishing boat.
The boat makes individual reservations which works fine, but they have an
overview page which shows the month at a glance. I am using a custom query
to show just the total booked on the boat on a given day.
SELECT Sum(Results.group_size) AS SumOfgroup_size
FROM Results
WHERE (((Results.month_of_trip)='May') AND ((Results.day_of_trip)='2') AND
((Results.ship)='challenger'));

Works fine except when the page is displayed there is a blank space for each
individual record and then the total is displayed. You can see it here
http://www.clipperfleet.com/reservations/bymonthmay.asp
Does anyone have a suggestion how not to have the blanks.
Thanks
Bill
 

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