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!

Report Parameters

Status
Not open for further replies.

goodspeed7

Programmer
Sep 1, 2005
15
US
I know this is easy but i just have no clue.

I have a report parameter that has a drop down list and lets the user pick what project they want to query. Is there a way to put an option "All" in so they could get the totals for all projects??
 
I do this by first making the query's parameter optional. If you use a sp, you could do something like:
Code:
CREATE PROCEDURE rpt_ProjectReport

@ProjectID INT = NULL

AS

SELECT * FROM  Projects 
WHERE
  ProjectID = 
  (CASE WHEN @ProjectID IS NULL THEN ProjectID ELSE @ProjectID END)

Then for your list of ValidValues for projectID, something like
Code:
SELECT NULL, '(All Projects)'
UNION
SELECT ProjectID, ProjectName FROM Projects

That gives you a result set like
NULL, (All Projects)
1, Project A
3, Project C

etc.,

So when "(All Projects}" is selected, a NULL value for ProjectID is submitted to main report SP. The CASE statement in the where clause allows the projectID to be optional - if it's null you get all projects, otherwise only the ones with the id submitted.

Hope that helps.


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top