We have a dataset which shows the number of events that are related to a business unit. Some events are completed in time and as such we have calculated the number of events in time.
We are wanting to perform a count of the number of business units that have an events in time better than 90%
But in the meantime can you just test this instead
Business Units under 90% = COUNTROWS(
FILTER(
SUMMARIZE( ‘CRM Events’, ‘CRM Events’[Business Unit], Potentially the code here aswell???
“EIT”,[Events in Time %])
, [EIT]<.9)
)
I’m not sure what column this is. You might have to add it as I’ve suggested above also.
See if this works. I’m thinking the VALUES functions could potentially be causing the issue here.
Thanks @sam.mckay. Unfortunately that didn’t work.
The column that starts with CR-18100177 is the actual event numbers, so under Active Communities for this particular month there are 11 CRMS events, but only 8 of them were completed in time. I am trying to calculate that for any given period selected the Events In Time % for Active Communities was 73%, which is below our 90% threshold.
In the above screen shot it shows that Active Communities is below 90% and Buildings and Facilities is above, so the number I’m looking for is 1. There is 1 Business Unit that is above the threshold.