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

display parameters in the report 2

Status
Not open for further replies.

akalinowski

IS-IT--Management
Oct 3, 2006
190
US
i am heavily using SSRS now and everyone loves it except the accounting department, they like to see the report parameters on the report itself when printed and/or exported to excel

the data is OK but i am not sure how to include what was selected for example date range or product category or store (retail company)



akalinowski
 
Put a TextBox on the top of the report. In the expression, put something like the following:

Code:
="Date Range:  " & FORMAT(Paramters!StartDate.Value, "MM/dd/yyyy") & " through " & FORMAT(Paramters!EndDate.Value, "MM/dd/yyyy")
 
Is that what your parameter is called or what it is laballed?

If you use the expression editor, you should be able to just open up the paramters colleciton and double click the appropriate one to insert it...

Rgds, Geoff

We could learn a lot from crayons. Some are sharp, some are pretty and some are dull. Some have weird names and all are different colours but they all live in the same box.

Please read FAQ222-2244 before you ask a question
 
ha figured it out i needed to put them in single quotes to specify text.

computers, they dont do what you want them to they do what you ask them to
:)

thanks for your help that was the answer.

akalinowski
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top