Forum Discussion
Lolwife1966
5 years agoFrequent Visitor
Measure required to count overdue orders
New to Power BI so please be gentle... I have a table for outstanding orders - it contains a 'date expected' field and a 'hold status' field. An order is classed as overdue if the 'date expected...
Tanushree_Kapse
Impactful Individual
5 years agoHi Lolwife1966 ,
Try this measure:
Measure = COUNTROWS(FILTER('Table',ISBLANK([Hold Status]) && [Date expected]<TODAY()))
Mark this as a solution, if I answered your question.
Thanks
- Lolwife19665 years agoFrequent Visitor
Thanks for that, I couldn't get that to work.
The following seems to do the trick:
Measure = COUNTROWS(FILTER('Table',[Hold Status]="" && 'Table'[Date expected]<TODAY()))