hi,
is there any way to include invisible sections - conditionally formatted as invisible - when exporting a report from the activex viewer to excel.
checking the conditions for in/visibilty
WhilePrintingRecords;
if PageNumber > 2 then DefaultAttribute;
reveals that I need something like 'WhileExportingRecords':
WhileExportingRecords;
if PageNumber > 0 then DefaultAttribute;
to include the 'hidden' records as well.
any hint is appreciated
-js-
is there any way to include invisible sections - conditionally formatted as invisible - when exporting a report from the activex viewer to excel.
checking the conditions for in/visibilty
WhilePrintingRecords;
if PageNumber > 2 then DefaultAttribute;
reveals that I need something like 'WhileExportingRecords':
WhileExportingRecords;
if PageNumber > 0 then DefaultAttribute;
to include the 'hidden' records as well.
any hint is appreciated
-js-