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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Need help writing a DAX formula showing if one column is >= another, it shows as late

Hello everyone! 

I'm fairly new to Power BI and DAX, and my google searching hasn't been very successful. 

I have these two columns that I need to write a DAX measure for. The Arrival shows when a driver got to his pick up location, and the depart is when he left. I need to write a formula showing that if a driver left 45 minutes or after his arrival to the pick up, it is shows as late. 

 

Thank you in advance, and I look forward to learning something! Measure Columns.PNG

 

1 ACCEPTED SOLUTION
AlB
Community Champion
Community Champion

Hi @Anonymous 

You talk aoubt DAX but seem to be showing a table in PQ. 

If it's DAX you want, create this calculated column:

 

New column =
IF (
     ( Table1[edi_pckp_arrival] - Table1[edi_depart_pickup] ) * 24 * 60 >= 45,
    "Late",
    "On time"
)

 

 

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

SU18_powerbi_badge

View solution in original post

1 REPLY 1
AlB
Community Champion
Community Champion

Hi @Anonymous 

You talk aoubt DAX but seem to be showing a table in PQ. 

If it's DAX you want, create this calculated column:

 

New column =
IF (
     ( Table1[edi_pckp_arrival] - Table1[edi_depart_pickup] ) * 24 * 60 >= 45,
    "Late",
    "On time"
)

 

 

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

SU18_powerbi_badge

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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