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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
I have a table with an incident date. I need to create a column that calculates the business days between that date and todays date so that I can filter a report to only show me incidents older than 2 business days. I do have a date table that has a is weekday true/false column.
Solved! Go to Solution.
Hi @AmberJane ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
Date table:
Table:
(2) We can create a calculated column.
Column = COUNTROWS(FILTER('Date Table',[date]>=EARLIER('Table'[incident date]) && [date] <=TODAY() && [weekday]=TRUE()))
(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @AmberJane ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
Date table:
Table:
(2) We can create a calculated column.
Column = COUNTROWS(FILTER('Date Table',[date]>=EARLIER('Table'[incident date]) && [date] <=TODAY() && [weekday]=TRUE()))
(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Worked!! super easy to follow. Appreciate you 🙂
Does your date table also have a business day flag column?
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 11 | |
| 9 | |
| 9 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 27 | |
| 22 | |
| 19 | |
| 17 | |
| 11 |