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.

 All Forums
 Development Tools
 Reporting Services Development
 Need to include 3 parameters in Report Title

Author  Topic 

kdnichols
Posting Yak Master

232 Posts

Posted - 2006-11-16 : 09:48:06
Hello Everyone,

I have the following code:


="BY " & UCase(Parameters!SummaryBy.Value & IIF(Parameters!SummaryBy2.Value<>"", " / " & Parameters!SummaryBy3.Value,""))


I really need to include another parameter in this SummaryBy.Value. How should I do this?

TIA,

Have a great day!



Kurt

tikus
Starting Member

31 Posts

Posted - 2006-11-20 : 12:22:32
UCase(Parameters!SummaryBy.Value & IIF(Parameters!SummaryBy2.Value<>"", " / " & Parameters!SummaryBy3.Value, "")) & IIF(Parameters!SummaryBy3.Value <> "", " /" & Parameters!SummaryBy3.Value, "")
Go to Top of Page
   

- Advertisement -