This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I am having some trouble with figuring out a formula to display my upcoming order due dates, specifically I want to view the next 5 order dates due but only if they fall on a weekday. I am also trying to build a column which shows all upcoming due dates for the next working week.
For the above, my due 1+ - 5+ would be returning M-F next week (10/30-11/3) as of today and on Monday 10/30 I would want to return T-M (10/31-11/6) and so on.
For the Upcoming week, I would be returning M-F (11/6-11/10) as of now, and advancing in a similar fashion as the Day 1+-5+>
Here is an example file - example.pbix
Any and all help is greatly appreciated.
HI @Anonymous,
You can try to use below measure to get Current weekday range and upcoming weekday range:
Current/Upcoming Week =
VAR temp = [PastDue_Adj]
VAR weekDay =
WEEKDAY ( temp, 1 )
VAR CurrentWeek = temp + 7
+ ( 2 - weekDay )
& "~"
& temp + 7
+ ( 6 - weekDay )
VAR UpcomingWeek =
TODAY () + 7
+ ( 2 - WEEKDAY ( TODAY (), 1 ) )
& "~"
& TODAY () + 7
+ ( 6 - WEEKDAY ( TODAY (), 1 ) )
RETURN
IF ( temp <> BLANK (), CurrentWeek, IF ( [DeliveredLate] <> 1, UpcomingWeek ) )
Regards,
Xiaoxin Sheng
Thanks @Anonymous however it's not quite what I was hoping to achieve. Ideally I am wanting to only display in the Day 1-5 upcoming orders for weekdays and on the Upcoming Due display the upcoming weeks orders.
HI @Anonymous,
Which date you used check as the condition to switch the date range? If you can please use the static date value. It may get the wrong result if you combine use multiple measures who contains specific filters.
Regards,
Xiaoxin Sheng
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 36 | |
| 30 | |
| 23 | |
| 22 |