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
thmonte
Helper IV
Helper IV

Use value from other row in dataset based on condition

I am trying to do some advanced DAX/PowerQuery equations and I am coming up short and looking for some help.

 

I have a dataset like the below and the use case is to get an average amount of time spent for each 'code'.  To come up with that I need to take each true value timestamp and comare it against the next false vale timestamp.  Ideally I'd like to store the DATEDIFF in a new column on each TRUE value.  Does anyone know how I can achieve this?  Keep in mind, each equipment ID can have many true/false values.

 

Thank you in advance!

 

 

equipIDdowncodetimestamp
25DC-001FALSE 1/5/2018 8:00AM
25DC-001TRUEDN031/4/2018 8:00AM
25DC-001TRUEDN021/3/2018 8:00AM
25DC-001TRUEDN011/2/2018 8:00AM
25DC-001FALSE 1/1/2018 8:00AM
25DC-002FALSE 1/6/2018 8:00AM
25DC-002TRUEDN011/3/2018 8:00AM
25DC-002FALSE 1/1/2018 8:00AM

 

 

Example: Output

 

 

equipIDdowncodetimestampdateDiff
25DC-001FALSE 1/5/2018 8:00AM 
25DC-001TRUEDN031/4/2018 8:00AM1440
25DC-001TRUEDN021/3/2018 8:00AM2880
25DC-001TRUEDN011/2/2018 8:00AM4320
25DC-001FALSE 1/1/2018 8:00AM 
25DC-002FALSE 1/6/2018 8:00AM 
25DC-002TRUEDN011/3/2018 8:00AM4320
25DC-002FALSE 1/1/2018 8:00AM 
1 ACCEPTED SOLUTION

Hi @thmonte

 

Sorry, I missed that.  I have ammeded my calc

 

Column = 
VAR x = MAXX(
            FILTER(
                'Table1',
                'Table1'[equipID] = EARLIER('Table1'[equipID]) 
                && 'Table1'[timestamp] > EARLIER('Table1'[timestamp])
                && 'Table1'[down] = FALSE()
                ),
                'Table1'[timestamp])

VAR y = if(ISBLANK(x),NOW(),x)

RETURN IF( 'Table1'[code]<>"",
        DATEDIFF('Table1'[timestamp],y,MINUTE))

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

11 REPLIES 11

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.