Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello
I really need some help with this one.
I have a table with sales order information taken direct from a SQL database. The orders have a due date coloum. I want to count all of the orders where the due date has passed todays date . so any orders with a due date of yesterday will be counted but orders with a due date of tomorrow will not.
Can this be done ?
many thanks
Solved! Go to Solution.
Hi,
There are several ways to do this and it all depends on how your table is structured, how you plan on using your meassure and so on...
For example if all your rows in the sales order table corresponds to separate orders and all you want to do is to get an count of the orders that has passed due date the simple meassure like this will work:
Orders past duedate = COUNTROWS(FILTER(Orders,Orders[DueDate]<TODAY()))
But I guess there will be other factors to consider as well but without knowing more about your specific case...
Br,
Magnus
Hi,
There are several ways to do this and it all depends on how your table is structured, how you plan on using your meassure and so on...
For example if all your rows in the sales order table corresponds to separate orders and all you want to do is to get an count of the orders that has passed due date the simple meassure like this will work:
Orders past duedate = COUNTROWS(FILTER(Orders,Orders[DueDate]<TODAY()))
But I guess there will be other factors to consider as well but without knowing more about your specific case...
Br,
Magnus
Hello Magnus
Thanks for responding. that is exactly the soloution i was looking for.
Very much appreciated .
and have a great day ![]()
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 51 | |
| 36 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |