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
How I can calculate based on hours.. for example all the sales of Friday after 10pm should be count as Monday sales
Solved! Go to Solution.
@koralillis Something like this. i think that's what you are asking for?
SWITCH(
TRUE(),
Day IN {"Saturday", "Sunday"}, "Monday",
Day = "Friday" && HourOfDay >= 22, "Monday",
Day = "Sunday", "Monday",
"WorkWeek")
@koralillis Something like this. i think that's what you are asking for?
SWITCH(
TRUE(),
Day IN {"Saturday", "Sunday"}, "Monday",
Day = "Friday" && HourOfDay >= 22, "Monday",
Day = "Sunday", "Monday",
"WorkWeek")
@koralillis , In this logic, put an additional filter of 10 AM. OF create a date column, which move you friday date after 10 AM to Monday
https://amitchandak.medium.com/power-bi-show-weekend-data-on-monday-or-friday-dab5ee201f0e
New Date = Switch(True(),
weekDay([Date],2) =5 && Timevalue([Datetime]) >time(10,0,0), [Date]+3,
weekDay([Date],2) =6 , [Date]+2,
weekDay([Date],2) =7 , [Date]+1,
[Date]
)
Now use this new date
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 |
|---|---|
| 35 | |
| 32 | |
| 25 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 66 | |
| 36 | |
| 32 | |
| 25 | |
| 23 |