Forum Discussion
yforti
4 years agoHelper II
Help with calculated dates.
Hi guys, I need help to calculate only the last date by NR_RESERVA: For example, the expected result for the number AFC10000055 is: 11/04/2022 because this is the last date for this key number. ...
- 4 years ago
yforti - I think you can just do as:
Measure = CALCULATE( MAX(TableName[Date]), ALLEXCEPT(TableName,TableName[Group]) )
ChrisMendoza
4 years agoResident Rockstar
yforti - I think you can just do as:
Measure =
CALCULATE(
MAX(TableName[Date]),
ALLEXCEPT(TableName,TableName[Group])
)