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

DAX: Testresult within first 60mins

Hi,

Need help on DAX to determine the latest TestResult within the first 60mins (highlighted in yellow). Sample data as below.

 

Sample table (Final TestResults may or maynot exceed 60mins)

2018-03-02 14_19_50-TT60 - Excel.jpg https://1drv.ms/x/s!ArjVwEnHONXNgiLUqh7vnuL6iSnC

 

DAX use to calculate TestResult Final and TestResult First

TestTimeFr = CALCULATE ( MIN ( 'Data'[TestTime_TC1]); FILTER ( 'data'; 'Data'[SerialNumber] = EARLIER ( 'Data'[SerialNumber] ) && data[station] = EARLIER ( 'Data'[station] ) ) )

TestResultsFr = IF(Data[TestTime]=Data[TestTimeFr];Data[TestResult];"null")

TestTimeFn = CALCULATE ( MAX ( 'Data'[TestTime]); FILTER ( 'data'; 'Data'[SerialNumber] = EARLIER ( 'Data'[SerialNumber] ) && data[station] = EARLIER ( 'Data'[station] ) ) )

TestResultsFn = IF(Data[TestTime]=Data[TestTimeFn];Data[TestResult];"null")

 

1 ACCEPTED SOLUTION
v-huizhn-msft
Employee
Employee

Hi @vincentakatoh,

Please create calculated columns using the formula below.

duration =
IF ( DATEDIFF ( Data[TestTimeFr], Data[TestTime_TC1], MINUTE ) < 60, 1, 0 )

latest TestResult within the first 60mins =
CALCULATE ( MAX ( Data[TestTime_TC1] ), FILTER ( Data, Data[duration] ) )


You will get the following expected result.

1.PNG

Best Regards,
Angelia

View solution in original post

2 REPLIES 2
v-huizhn-msft
Employee
Employee

Hi @vincentakatoh,

Please create calculated columns using the formula below.

duration =
IF ( DATEDIFF ( Data[TestTimeFr], Data[TestTime_TC1], MINUTE ) < 60, 1, 0 )

latest TestResult within the first 60mins =
CALCULATE ( MAX ( Data[TestTime_TC1] ), FILTER ( Data, Data[duration] ) )


You will get the following expected result.

1.PNG

Best Regards,
Angelia

Hi @v-huizhn-msft

Thanks. Works pefectly on my actual data. I'm only able to do so much with PowerBI because all the great folks in this forum.

 

Super Kudos!

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.