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 |
moodi_z
Starting Member
38 Posts |
Posted - 2009-03-04 : 07:15:02
|
Hi,How can I know if the "Select All" option was selected in a multi-select list.. I mean somthing like this:=IIf(Parameters!xxx.Label = "(Select All)", "ALL", .....Thanks in advanced. |
|
moodi_z
Starting Member
38 Posts |
Posted - 2009-03-04 : 08:18:29
|
This is how I had solve it:=IIf(First(Fields!WipID_Count.Value, "WIPID_Count") = Parameters!WIPID.Count, "ALL", Join(Parameters!WIPID.Value) )Isn't there any way else?! |
|
|
|
|
|