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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Second Page Prompt Display Problem in ReportNet

Status
Not open for further replies.

msnaidu

Programmer
Sep 14, 2004
27
IN
I have two prompt pages
Prompt 1 and Prompt 2
Prompt 2 contain mostly default values
User can select Prompts from Prompt 1 and select Finish Button,now wht should happen it all the Default values of Prompt 2 should be displayed in Report Page.

But whts happening is Only prompt 1 Values are getting displayed and all other values of Prompt 2 are displayed NULL.
But if after selecting Prompt 1 values ,if i am going to prompt 2 page and then directly selecting Finish then all the Prompts are getting displayed in Report Page

Can anyone tell me is it possibal for displaying the value of Prompt 2 default values without going to prompt 2 Page???


Regards
Mknaidu
 
Are you using ParamDisplayValue or ParamValue ?

Anyway you can use this in your text box in the final report , if you are not changing your default value too often.

IF ( ParamDisplayValue("MyFilter") <> "" ) THEN
( ParamDisplayValue("MyFilter") )
ELSE
( 'Display My default Parameter')
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top