Forum Discussion
Roland74
Helper I
1 year agoHow to get the highest value on the same date
Hi, im struggling with this case. I've got this table: (For the month June everything is the same, except the 'ResultID') For a selected month i need the highest ResultID, i.e. for June i w...
- 1 year ago
After some trial-and-error i found the solution, which was quite simple.
MaxID_Calc2 = CALCULATE(MAX(factProjectPreclosureResult[ProjectPreclosureResultID]),ALL(factProjectPreclosureResult[ProjectPreclosureResultID]),ALL(factProjectPreclosureResult[PostingDateID]))
Roland74
Helper I
1 year agoAfter some trial-and-error i found the solution, which was quite simple.
MaxID_Calc2 = CALCULATE(
MAX(factProjectPreclosureResult[ProjectPreclosureResultID]),
ALL(factProjectPreclosureResult[ProjectPreclosureResultID]),
ALL(factProjectPreclosureResult[PostingDateID])
)