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

Select Prompt

Status
Not open for further replies.

glenbrann

Programmer
Joined
Oct 20, 2008
Messages
3
Location
US
How do I create a Select Prompt selection for a Detail or Summary? So the user can Select Summary or Detail in a report and based on this the Summary would print or the Detail.

Thanks
 
Make 2 report pages, one for summary results and one for detail. Make a value prompt with a value list of 2 choices:
'display summary' / 'display detail'. Associate a parameter 'displaytype' with the prompt. Then define a boolean variable that is defined as:
Code:
parameterdisplayvalue('displaytype') = 'display summary'
Use this variable as a render variable for both report pages.

summary page: select 'Yes'
detail page: deselect 'Yes'

Ties Blom

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top