Trying to use Switch statement in SSRS

3.3k Views Asked by At
=Switch(Fields!CompnyID.Value=5, "company 1" "dsSalesManagement", Fields!CompnyID.Value=6, "company 2" "dsSalesManagement" )

Trying to use switch statement to display two different results in my report. Was maybe looking for syntax correction or is there a way to use an else if statement? Problem is I want this expression to be dependent on value from another expression. Is that possible in ssrs? ErrorList

3

There are 3 best solutions below

3
On BEST ANSWER

It seems that you have more than one datasource in your report so you have to specify the correct scope of your aggregate function.

For example:

=Switch(
    First(Fields!CompnyID.Value, "dsSalesManagement") = 5, "company 1",
    First(Fields!CompnyID.Value, "dsSalesManagement") = 6, "company 2" 
)
0
On

You want to use an IIF (immediate if) statement. The MSDN page is here

0
On

The syntax error is here:

                                 V-----------------------------V
=Switch(Fields!CompnyID.Value=5, "company 1" "dsSalesManagement", 

the expression must only return one value, so something like:

=Switch(Fields!CompnyID.Value=5, "company 1" , ...) 

Would be syntactically correct, but I'm not clear how "dsSalesManagement" is involved, so the actual result expression may be different.

SSRS asks me to specify a dataset aggregate.

Then you may want a calculated field on the dataset that uses Switch to return the right field value, then use that field in the aggregate.