Forum Discussion
Value Associated With Max Value From Another Column
- 4 years ago
Anonymous here is the measure:
Latest Part = VAR __LatestExpectedDate = MAX ( Parts[ExpectedDate] ) VAR __EarliestSequence = CALCULATE ( MIN ( Parts[Seq] ), Parts[ExpectedDate] = __LatestExpectedDate ) RETURN CALCULATE ( MAX ( Parts[PartNum] ), Parts[ExpectedDate] = __LatestExpectedDate, Parts[Seq] = __EarliestSequence )output
✨ Follow us on LinkedIn
Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡ Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
Anonymous here is the measure:
Latest Part =
VAR __LatestExpectedDate = MAX ( Parts[ExpectedDate] )
VAR __EarliestSequence = CALCULATE ( MIN ( Parts[Seq] ), Parts[ExpectedDate] = __LatestExpectedDate )
RETURN
CALCULATE (
MAX ( Parts[PartNum] ),
Parts[ExpectedDate] = __LatestExpectedDate,
Parts[Seq] = __EarliestSequence
)
output
✨ Follow us on LinkedIn
Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡ Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡