Forum Discussion
Anonymous
4 years agoNot applicable
Return last non blank value
Hi everyone, I have the following table: Indicator Date Value1 Value2 x 01/01/2022 1 2 x 01/02/2022 2 3 x 01/03/2022 4 5 x 01/04/2022 6 y 01/01/2022 7 8...
- 4 years ago
Try this..
Measure = var maxdate = CALCULATE(MAX('Table'[Date]),'Table'[Indicator] = "x", NOT ISBLANK('Table'[Value2])) return CALCULATE(MAX('Table'[Value2]),'Table'[Date]=maxdate,'Table'[Indicator] = "x")
tamerj1
Community Champion
4 years agoAnonymous
Value1 and Value2 are measures or columns? How are going to disply thhe result?