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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Newbie22
Resolver I
Resolver I

I need to track tickets that will due within the next 5 hours

Hi All,

 

Anyone knows how can I track tickets that will due within the next 5 hours? Is there any formula for that?

 

I have available columns "Ticket number" and "Due Date". I need to have a new column for tickets that will due within the next 5 hours. 

Below is an example

Ticket NumberDue Datewill due within the next 5 hours?
ABC12312/12/2022 11:50 PM

Yes

ABC45612/13/2022 12:00 AMYes
XYZ12312/13/2022 7:00 AMNo
XYZ45612/13/2022 9:00 AMNo
1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

@Newbie22 Maybe:

Measure = 
  VAR __DueBy = NOW() + 5/24
  VAR __DateTime = MAX('Table'[Due Date])
  VAR __Result = IF(__DateTime <= __DueBy,"Yes","No")
RETURN
  __Result


Follow on LinkedIn
@ 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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Mikelytics
Resident Rockstar
Resident Rockstar

Hi @Newbie22 

 

Please see the follwoing example:

 

Base Data

Mikelytics_0-1670860318561.png

 

formula ( I used 8 hours sicnce at my place it was 16:52

next 5 Hours = 
var var_TimeOfLineItem = SELECTEDVALUE(Tickets[Due Date])
var var_TimeNow = NOW()
var var_DeltainHours = (var_TimeOfLineItem-var_TimeNow) * 24
var var_DeltaInHoursallowed = 8

RETURN
IF(var_DeltainHours >= 0 && var_DeltainHours <= var_DeltaInHoursallowed,1,0)

 

result

Mikelytics_1-1670860407738.png

can also use it as a filter

Mikelytics_2-1670860443203.png

 

Best regards

Michael

-----------------------------------------------------

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Appreciate your thumbs up!

@ me in replies or I'll lose your thread.

-----------------------------------------------------

LinkedIn

 

 

------------------------------------------------------------------
Visit my blog datenhungrig which I recently started with content about business intelligence and Power BI in German and English or follow me on LinkedIn!
Greg_Deckler
Community Champion
Community Champion

@Newbie22 Maybe:

Measure = 
  VAR __DueBy = NOW() + 5/24
  VAR __DateTime = MAX('Table'[Due Date])
  VAR __Result = IF(__DateTime <= __DueBy,"Yes","No")
RETURN
  __Result


Follow on LinkedIn
@ 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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

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.