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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
Anonymous
Not applicable

Returning an output within a time range

Hi, please help to write an appropriate DAX code.

 

mish_1703_0-1614621088020.png

 

The issue:

A transaction is a row that contains a Driver Number, Vehicle Number, Load Date and a Load Time.

Upon checking the fact table, if a transaction for the same driver number, same load date, and load time in the time range of an hour (before or after the current load time) is found, then return the previous vehicle number, else return blank.

Thanks!  

 

1 ACCEPTED SOLUTION
Watsky
Solution Sage
Solution Sage

Hey @Anonymous , how about this:

 

Output = 
VAR CALC =
    CALCULATE (
        MAX ( 'Table'[Load Time] ),
        FILTER (
            ALLEXCEPT ( 'Table', 'Table'[Load Date], 'Table'[Driver Number] ),
            EARLIER ( 'Table'[Load Time] ) - 'Table'[Load Time]
        )
    )
VAR PreviousRow =
    TOPN (
        1,
        FILTER (
            'Table',
            'Table'[Vehicle Number] < EARLIER ( 'Table'[Vehicle Number] )
        ),
        'Table'[Vehicle Number], DESC
    )
VAR PreviousValue =
    MINX ( PreviousRow, 'Table'[Vehicle Number] )
RETURN
    IF (
        ISBLANK ( CALC ),
        "BLANK",
        IF (
            AND (
                DATEDIFF ( 'Table'[Load Time], CALC, MINUTE ) < 60,
                DATEDIFF ( 'Table'[Load Time], CALC, MINUTE ) > -60
            ),
            PreviousValue,
            "BLANK"
        )
    )

MishOutput.png

 

 

 

 

 

 


Did my answer(s) help you? Give it a kudos by clicking the Thumbs Up! ?
Did my post answer your question(s)? Mark my post as a solution. This will help others find the solution.


Did my answer(s) help you? Give it a kudos by clicking the Thumbs Up!
Did my post answer your question(s)? Mark my post as a solution. This will help others find the solution.

Proud to be a Super User!

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hey @Watsky, Genius! Thank you, it worked as I needed it to. 

Watsky
Solution Sage
Solution Sage

Hey @Anonymous , how about this:

 

Output = 
VAR CALC =
    CALCULATE (
        MAX ( 'Table'[Load Time] ),
        FILTER (
            ALLEXCEPT ( 'Table', 'Table'[Load Date], 'Table'[Driver Number] ),
            EARLIER ( 'Table'[Load Time] ) - 'Table'[Load Time]
        )
    )
VAR PreviousRow =
    TOPN (
        1,
        FILTER (
            'Table',
            'Table'[Vehicle Number] < EARLIER ( 'Table'[Vehicle Number] )
        ),
        'Table'[Vehicle Number], DESC
    )
VAR PreviousValue =
    MINX ( PreviousRow, 'Table'[Vehicle Number] )
RETURN
    IF (
        ISBLANK ( CALC ),
        "BLANK",
        IF (
            AND (
                DATEDIFF ( 'Table'[Load Time], CALC, MINUTE ) < 60,
                DATEDIFF ( 'Table'[Load Time], CALC, MINUTE ) > -60
            ),
            PreviousValue,
            "BLANK"
        )
    )

MishOutput.png

 

 

 

 

 

 


Did my answer(s) help you? Give it a kudos by clicking the Thumbs Up! ?
Did my post answer your question(s)? Mark my post as a solution. This will help others find the solution.


Did my answer(s) help you? Give it a kudos by clicking the Thumbs Up!
Did my post answer your question(s)? Mark my post as a solution. This will help others find the solution.

Proud to be a Super User!

Helpful resources

Announcements
October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.