Hi,
Is there a report script command that I can use to hide rows in excel when generating an output.
Ciska
Hi,
Is there a report script command that I can use to hide rows in excel when generating an output.
Ciska
Hi Ciska,
try to set row height to zero - use Report class XlsRow, method setHeight(0).
Thanks, but i had to hide a few rows so I've used:
sheet2.setRowGroupCollapsed(xpos, true);
Ciska