I have a Check Register report that returns checks written for a specific client on a certain date. It runs off of 5 tables/queries which are linked together.
The problem is, when there no data it returns nothing at all. We would like it to at least return the company name and check date (for the header so we can see who it was for). Here are the queries and tables:
A - Company Info Query
B - Check Register Table
C - Check/Member Cross Reference Query
D - Member Info Table
E - Plan Info Table
Here is the relationships between them (note the arrows denote Left Outer Joins):
D
/
A -> B -> C
\
E
I think the problem is that there are Record Selectors. There is company ID, which resides in table A, but then there is Check Date which resides in table B. My theory is that since there is no matching check date, it returns no data, even though A and B have a Left Outer Join relationship between them.
Does anyone know a way around this? I thought about using Print Conditionals instead of Record Selectors, but am worried that might mess up my Totals (though the records aren't displayed, would they be included in my Totals)?
Thanks.
The problem is, when there no data it returns nothing at all. We would like it to at least return the company name and check date (for the header so we can see who it was for). Here are the queries and tables:
A - Company Info Query
B - Check Register Table
C - Check/Member Cross Reference Query
D - Member Info Table
E - Plan Info Table
Here is the relationships between them (note the arrows denote Left Outer Joins):
D
/
A -> B -> C
\
E
I think the problem is that there are Record Selectors. There is company ID, which resides in table A, but then there is Check Date which resides in table B. My theory is that since there is no matching check date, it returns no data, even though A and B have a Left Outer Join relationship between them.
Does anyone know a way around this? I thought about using Print Conditionals instead of Record Selectors, but am worried that might mess up my Totals (though the records aren't displayed, would they be included in my Totals)?
Thanks.