What is the best way to allow users to select which report pages to print? For example, I have 5 sensors each with their own report page containing related data e.g. page 1 for sensor 1, page 2 for sensor 2 etc. I want the user to be able to, for example, click a checkbox for sensors 1, 3, and 5 and print a report with only pages 1, 3 and 5. Thanks
Do the filtering at the time of report generation - not at print time. Then print the whole report.
If you need further help then please explain where the data is coming from (SQL query, etc., or somewhere else).
Ok sure. I've got this page report with 2 pages. The first page has a graph of the data history for RandomShort1 and alarm and acknowledgement logs (image1). I'm getting the data for the graph from the Sample_SQLite_Database (image 2). The alarm and acknowledgement tables I'm getting from separate Alarm journal queries. Page 2 is identical except it has information for RandomShort2. Once past the proof of concept stage I'd probably have over 10 sensors avaiable to be selected and would like users to be able to choose which to include in the report e.g. if they only wanted to look at Randomshort1 they can check a box.
Thanks,