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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
lennox25
Helper V
Helper V

Help with filtering on hours between 5pm and 9am inc weekends and holidays

Hi, 

Can someone help me? I have a table containing information on emails received. Date/Time etc.  I need to create a column/measure on Power Bi where it will filter only to show emails received 'After Hours' Between 5pm and 9am. This must also include weekends and Public Holidays.

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@lennox25 Try:

 

Column = 
  VAR __DateTime = [DateTimeColumn]
  VAR __Hour = HOUR(__DateTime)
  VAR __Result = IF( __Hour >= 17 || __Hour < 9 || WEEKDAY(__DateTime,2) > 5,1,0)
RETURN
  __Result

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

3 REPLIES 3
Greg_Deckler
Super User
Super User

@lennox25 Try:

 

Column = 
  VAR __DateTime = [DateTimeColumn]
  VAR __Hour = HOUR(__DateTime)
  VAR __Result = IF( __Hour >= 17 || __Hour < 9 || WEEKDAY(__DateTime,2) > 5,1,0)
RETURN
  __Result

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler Is it possible to add to this by including Public Holidays? Thanks

@Greg_Deckler Perfect! Thank you 🙂

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.