Here is my SQL from the query.
--------------------------------------------SQL-----------------------------------------------
SELECT Null AS [Date], DateRange_AllHours.SumOfDuration AS Total,
DateRange_Hosthours.[Host hours] AS Host, DateRange_MCUhours.[MCU hours],
DateRange_Attendeehours.TotalAttendee AS Attendee,
DateRange_CnxHours.[Cancelled hours] AS Cancelled
FROM DateRange_Hosthours, DateRange_Attendeehours, DateRange_AllHours,
DateRange_CnxHours, DateRange_MCUhours
GROUP BY Null, DateRange_AllHours.SumOfDuration, DateRange_Hosthours.[Host
hours], DateRange_MCUhours.[MCU hours],
DateRange_Attendeehours.TotalAttendee, DateRange_CnxHours.[Cancelled
hours];
----------------------------------SQL--------------------------------------------------------
If the "DateRange_CnxHours"field has no data the query returns only the
column headings. I don't even get blank cells back.
--
I''m a novice with an advance way of thinking.
Jeff Boyce said:
You haven't described wether the underlying data comes from a single
table
or the joining of more than one table.
Can you post the SQL statement of your query, that the newsgroup readers
might be able to get a better understanding of what (and how) you are
trying
to do?
Regards
Jeff Boyce
Microsoft Office/Access MVP
How do I keep a query from just returning the column headings. I have
a
query that is returning just the column headings if one of the fields
has
a
null value.