Group by Switch or IIF - RDLC report (Age Ranges of Customers)

2.3k Views Asked by At

As a precursor to this i read: SSRS Conditional Reporting, however I have tried and I'm just not getting anywhere.

I originally tried supplying the data in the table query using a switch statement, which failed, so i have now brought all the data into a table, and now i just want to run a switch statement for Age Ranges and Count the age ranges!

Data is: [Customerid] = int32 [age] = int32

I have created a table in my report:

enter image description here

I have tried: iif statement:

=iif(Fields!Age.Value < 18,"< 18", 
iif(Fields!Age.Value <30, "18-30", 
iif(Fields!Age.Value < 45, "30-45", ">45")))

enter image description here This is obviously not working, as ages 16 arent appearing in the <18 section

I have also tried this with a switch(expression,string) expression and not having any luck there either!?

Ideas?

1

There are 1 best solutions below

3
On BEST ANSWER

Your group expression should be

=SWITCH(
Fields!Age.Value <18, "< 18",
Fields!Age.Value <30, "18-29",
Fields!Age.Value <45, "30-45",
True, ">45"
)

Report design something like ...

enter image description here

The expression in column 1 is also the same as the group expression.

This gives you this as output (based on your sample data) enter image description here

You'll need to probably do something with the group order but I'm in a rush !