Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello everyone - I am a somewhat newbie at PowerBi. I haver a dashboard that shows the average ticket resolved count for our employees. RIght now the average is based out of the tickets resolved divied by the dates within that week. I would like to average out the tickets to a full five day business week and exclude holidays. Can anyone suggest how to make sure the average is based out of a five day business week exclude holidays? Appreciate any assistance. Thanks
Solved! Go to Solution.
@Anonymous,
I'm afraid you should create a seperate holiday table which contains all of the holidays and weekends date. Than use DAX like pattern below:
Result =
CALCULATE (
AVERAGE ( Table[Value] ),
FILTER ( Table, Table[Date] IN VALUES ( Holiday_Table[Date] ) )
)
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous,
I'm afraid you should create a seperate holiday table which contains all of the holidays and weekends date. Than use DAX like pattern below:
Result =
CALCULATE (
AVERAGE ( Table[Value] ),
FILTER ( Table, Table[Date] IN VALUES ( Holiday_Table[Date] ) )
)
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Take a look at these two Quick Measures as I think you want something like them.
https://community.powerbi.com/t5/Quick-Measures-Gallery/Open-Tickets/m-p/409364
https://community.powerbi.com/t5/Quick-Measures-Gallery/Periodic-Billing/m-p/409365
| User | Count |
|---|---|
| 50 | |
| 41 | |
| 32 | |
| 14 | |
| 13 |
| User | Count |
|---|---|
| 84 | |
| 72 | |
| 37 | |
| 27 | |
| 24 |