I have written an expression like below ,but it is showing some error ,can any one help me with this....
=IIf(Parameters!Plan.Value=="all",IIf(Fields!Plan.Value=="freedom",count(Fields!No_Of_Admissions.Value),0), 0)
Thanks in Advance.
I have written an expression like below ,but it is showing some error ,can any one help me with this....
=IIf(Parameters!Plan.Value=="all",IIf(Fields!Plan.Value=="freedom",count(Fields!No_Of_Admissions.Value),0), 0)
Thanks in Advance.
Take a look at This.
Without much detail I'm thinking you want to do something like this.
=IIF(Parameters!Plan.Value="all" AND Fields!Plan.Value="freedom", count(Fields!No_Of_Admissions.Value),0)