Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Date prompt do not appear in Excel or PDF formats - Report Studio 1

Status
Not open for further replies.

gruposenda

Programmer
Jan 11, 2007
51
MX
Hi :
I have a report where there are 2 date prompt. When running the report with HTML format I have no problem to show both date prompt , but if I require a PDF or excel format, these are not showed. Any idea ?
Thanks in advance
 
You need to move the prompts to a prompt-page I guess.
If you want to show the selected values of the prompts in PDF then add some layout-calculations to the top of the report like:

Code:
IF (ReportOutput() = ('PDF')) THEN
(ParamDisplayValue('Parametername'))
ELSE 
  ('')

Ties Blom

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top