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

How to display different fields based on parameters

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
0
0
I have a situation where I have a report to build. If the user chooses all the options a page will be displayed with everything.

However, the user has the ability to choose what will be displayed by checking boxes in the ASP code.

Ex. Selection Details or Summary or both for Customer
Details or Summary or both for Vendor

Based on what they check I only want to display the information selected and not have gaps where the other information should be.

Can anyone help me with this, I have been trying everything to get this to work.

 
Pass in a parameter to the report

name it something like "Format Type"

then under the sections use want to display
based on the selection : go to Format Section:

and under the suppress (No Drill-Down) click the
formula button and put something like this in...

If {?Format Type} = 'O' Then False
Else True

Do this for each section you need to show or suppress.
 
I haven't been able to get the passingof parameters working. I can't see the parameters that I've tried to pass in the reports after
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top