I have a list of assessment scores that are grouped into tiers (1 thru 7) based off of how many standard deviations the score is away from the population mean (see tier calculation below). I want to be able to count how many clients are in each tier and then display that in a bar graph. The priority tiers are currently displayed in their own calculation column. I want to use a countif() function, but that is not an option. Is there something simple I am missing?
Priority Tier Calculation:
if(${stdev_away_from_mean}>3,1,if(${stdev_away_from_mean}>2,2,if(${stdev_away_from_mean}>1,3,if(${stdev_away_from_mean}>0,4,if(${stdev_away_from_mean}>-1,5,if(${stdev_away_from_mean}>-2,6,7))))))