I have a main report linked to a sub report. If there are no records on the given date on the main report, I do not get any records returned in the sub report. Does anyone have a solution to this?
If it's possible that your main report will not have any rows, then I would convert the main report to a subreport too, and create a container report which always returns at least one row.
I sometimes create views for this wherein the select is:
select top 1 * from gender
Then I suppress everything in the main report and just show the 2 subreports. Since you're currently not linking the main report to the subreport (elsewise you wouldn't have expected to get anything in the subreport), you can treat them both as separate subs I think.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.