Forum Discussion
Kampua
4 years agoRegular Visitor
How to plot Monthly % Ontime
Hi, I have a table showing the agreed date, actual date, and whether it was dispatched on time (see below). I need to plot a line showing the % dispatched ontime for each month, how do I do that ...
- 4 years ago
Kampua , Try a measure like
divide(Countrows(filter(Table, Table[Ontime] = "Yes")),Countrows(Table))
refer, how two dates can use same date table - https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-trend/ba-p/882970
Kampua
4 years agoRegular Visitor
It works thanks 🙂