Hey all,
I’m trying to compute averages by category for only those records with non-zero ratings. Here’s the data -
I’ve attempted using avgOver -
ifelse(RATING<>0,avgOver(RATING,[INCIDENT_NUM],PRE_AGG),NULL)
…but by default it always gives the total average (in red). I don’t want to add an explicit filter in quicksight to remove the 0s. Please suggest