Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
jassie
Constraint Violating Yak Guru
332 Posts |
Posted - 2013-09-25 : 22:13:08
|
In an ssrs 2008 report, I need to place the 'report parameters' and associated values at the end of the report. This way the user can see the values that they selected for the report. However I do not know how to place these information as the last item displayed on the report. Thus can you tell me how to display report parameter names and the values that were entered into the ssrs 2008 as the last item displayed on the report? |
|
bandi
Master Smack Fu Yak Hacker
2242 Posts |
Posted - 2013-09-26 : 07:52:43
|
1) Take two text boxes and place then at the end of Report Design 2) Add Expression as "End Salary: " + CStr(Parameters!EndSalary.Value) for both text boxes--Chandu |
|
|
bandi
Master Smack Fu Yak Hacker
2242 Posts |
Posted - 2013-09-26 : 08:21:57
|
Alternate is:1) place Rectangle box at the end of report2) Drag & Drop both parameters on to rectangle3) Then at runtime selected values will be displayed on report--Chandu |
|
|
jassie
Constraint Violating Yak Guru
332 Posts |
Posted - 2013-09-26 : 09:45:32
|
How do you 'place the report parameters at the end of Report Design' |
|
|
bandi
Master Smack Fu Yak Hacker
2242 Posts |
Posted - 2013-09-26 : 09:53:08
|
Just drag & Drop Parameter into the report...ReportData --> Parameters --> Hold the Parameter Name --> Drag and drop into the Report--Chandu |
|
|
jassie
Constraint Violating Yak Guru
332 Posts |
Posted - 2013-10-04 : 09:44:18
|
Thanks! |
|
|
bandi
Master Smack Fu Yak Hacker
2242 Posts |
Posted - 2013-10-23 : 05:25:28
|
quote: Originally posted by jassie Thanks!
welcome--Chandu |
|
|
|
|
|