So I've been playing with it for awhile. Thanks for all of your help.
Group | service | Goal | ActualApr ActualMay ActualJun
1 phone 60sec 79sec 50sec 61sec
:
:
2 phone 65sec 70sec 80sec 45sec
:
:
3 phone 55sec 45sec 64sec 50sec
:
:
My report is a crosstab, I have got your solution working to only show a group when it has a red in any month in any service. I would now like to set it up so that it only shows it when there's a red from last month. (in this case june - the previous won't matter)
I tried this and it's not quite doing the job. Am I going down the right path?
total((CASE WHEN ([As of Date] between _add_days (_add_months (current_date,-2), _days_to_end_of_month(_add_months (current_date,-2)+1)) and _add_days (_add_months (current_date,-1), _days_to_end_of_month (_add_months (current_date,-1)))) and [Goal] >= [ACTUAL] THEN 0 ELSE 1 END) for [Group])
One more step and I think I'll have it. Any additional help, like the previous, would be greatly appreciated.