Hi there,
I am having an interesting requirement for a Report Studio Report. Some of you many have done this earlier!
I have to create a report which should hide Report Footer when the report output is in Excel but the report output should be visible in HTML/PDF format. All your valuable suggestion will be much appreciated.
Kindly let me know if any further information is required. Cheers
Hi,
You can duplicate the same page and use render variable. With this type of case as follows,
CASE
WHEN ReportOutput () = 'HTML' THEN 'HTML'
ELSE 'PDF'
END
Then on Html output selection it will display the pages with html true variable else the other.
Thanks,
RK
Thanks RK for your valuable comments. It works!!! Cheers