Forum Discussion
v-bastei
Microsoft Employee
4 years agoLongest test duration per test name per Log_ID
Hi, I have a table which contains list of tests results. The main columns are: - Log_ID - iteration name - Test - The test name which could be repeated in the same Log_ID multiple times ...
- 4 years ago
Hi v-bastei ,
How about this:
Here the DAX:
Measure = CALCULATE ( MAX ( Table[Runtime] ), Table[Type] <> "Build", Table[State] = "PASSED" )Does this solve your issue? 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
tackytechtom
Most Valuable Professional
4 years agoHi v-bastei ,
How about this:
Here the DAX:
Measure =
CALCULATE (
MAX ( Table[Runtime] ),
Table[Type] <> "Build",
Table[State] = "PASSED"
)
Does this solve your issue? 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
v-bastei
Microsoft Employee
4 years agoLooks like it does.
Thanks!!