Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Solved! Go to Solution.
Hi @Anonymous ,
You can create a calculated column as below to get it assume that you have one date table in your model:
Due Date =
MAXX (
TOPN (
'Table'[Day term],
FILTER (
ALL ( 'Date' ),
WEEKDAY ( 'Date'[Date], 2 ) < 6
&& 'Date'[Date] > 'Table'[Order date]
),
'Date'[Date], ASC
),
'Date'[Date]
)
Best Regards
Hi @Anonymous ,
You can create a calculated column as below to get it assume that you have one date table in your model:
Due Date =
MAXX (
TOPN (
'Table'[Day term],
FILTER (
ALL ( 'Date' ),
WEEKDAY ( 'Date'[Date], 2 ) < 6
&& 'Date'[Date] > 'Table'[Order date]
),
'Date'[Date], ASC
),
'Date'[Date]
)
Best Regards
Does your data model include a calendar table with a column identifying work days, weekends and holidays?
What granularity do you need? Whole days, hours, something else?
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 20 | |
| 19 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 37 | |
| 31 | |
| 27 |