How to separate report layout sections in one report [message #397422] |
Fri, 10 April 2009 10:21 |
jdavis850
Messages: 7 Registered: April 2009
|
Junior Member |
|
|
I currently have a report setup to display in PDF and Spreadsheet/Excel formats. I noticed when the report is displayed in Excel format the order of the columns get rearranged.
I noticed when I go to the property inspector of a frame and set the Vertical Elasticity to 'Fixed', the excel format displays properly, but in PDF some of the data gets cut-off. And when I set the Vertical Elasticity to 'Expand' the data is displayed appropriately in PDF format, misplaced in excel format.
Is it possible to set the Vertical Elasticity in a format trigger? Is there a command line keyword for this feature?
I want to accomplish something similar to this:
If upper(:DESFORMAT) = 'SPREADSHEET' then
Vertical Elasticity = "Fixed";
else if upper(:DESFORMAT) = 'PDF';
Vertical Elasticity = "Expand";
else if upper(:DESFORMAT) = 'RTF';
Vertical Elasticity = "Expand";
end;
Thanks.
[MERGED by LF]
[Updated on: Sat, 11 April 2009 09:48] by Moderator Report message to a moderator
|
|
|
|
Re: Need to set Vertical Elasticity in Format Trigger [message #397460 is a reply to message #397445] |
Fri, 10 April 2009 22:57 |
jdavis850
Messages: 7 Registered: April 2009
|
Junior Member |
|
|
Thanks for the comment. It seems like what I'm trying to accomplish isn't possible. I believe your proposed approach may be the best means to accomplish my task.
I'm utilizing Reports Builder 10g to create reports. What is the best way return a report in a certain format. For instance:
If output format is spreadsheet display ReportA, If output format is PDF display ReportB?
Thanks
|
|
|
|
how to separate report layout sections in one report [message #397478 is a reply to message #397422] |
Sat, 11 April 2009 00:55 |
jdavis850
Messages: 7 Registered: April 2009
|
Junior Member |
|
|
All,
I'm trying to determine how to separate report layout sections in one report using Report Builder 10g. My requirement is to provide a user the ability to display a report in PDF, excel, RTF formats. How can I assign LayoutA to 'PDF' and 'RTF', LayoutB to 'Spreadsheet'?
I've attempted to utilize the Header and Main sections in the paper layout, which contain unique layouts of the same report, but during generation, both sections are being displayed.
Thanks
|
|
|
|
|
|