Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
koralillis
New Member

calculate based on hours

How I can calculate based on hours.. for example all the sales of Friday after 10pm should be count as Monday sales

1 ACCEPTED SOLUTION
RayWu
Memorable Member
Memorable Member

@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")

 

 

 

View solution in original post

3 REPLIES 3
RayWu
Memorable Member
Memorable Member

@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")

 

 

 

amitchandak
Super User
Super User

@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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Dinesh_Suranga
Continued Contributor
Continued Contributor

Hi @koralillis ,

Could you please share your data table with sample data?

Thank you.

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.