Hello!
Maybe I'm just tired and not seeing things right, but I have a report with several Tables which may or not display data. This is defined by the filters applied to them.
I define the DataSources of the report and tables before the report is processed and the tables have filters on them to show only the data relevant to the detail record. SO, my report is organized as follows:
- Detail Section, databound to DataTable1;
- Table1, filtered by the ID from the detail section), databound to DataTable2;
- Table2, filtered by the ID from the detail section), databound to DataTable3;
- Table3, filtered by the ID from the detail section), databound to DataTable4;
All the tables are set to show the headers in every page they appear.
My question: How do I check to see if those tables are displaying data or not, so I can hide them?
Regards!