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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
mish_1703
New Member

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 @mish_1703 , 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
mish_1703
New Member

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

Watsky
Solution Sage
Solution Sage

Hey @mish_1703 , 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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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