Hi All,
I'd like to make a gauge which has multiple pointers! Each pointer would display the following value:
Avg(Fields!DemoHours.Value)
However, the value would be filtered by region (Fields!Region.Value)
Right now for each of the pointer's values I am doing the following:
=IIF(Fields!Region.Value = 1, Avg(Fields!DemoHours.Value), 0)
=IIF(Fields!Region.Value = 2, Avg(Fields!DemoHours.Value), 0)
=IIF(Fields!Region.Value = 3, Avg(Fields!DemoHours.Value), 0)
However, only one of the pointers appears to be working :-( Any ideas on how I can solve this?