Forum Discussion
ToddMate
6 years agoHelper II
Extract latest transaction: Variable attributes.
Hi I have a table that contains transactions for a service (service_id) as shown below: service_id id date_created date_modified direction id new_plan_id old_plan_id result usern...
- 6 years ago
Hi ToddMate
Use below measure:
Measure = var a = CALCULATE(MAX('Table'[date_created]),ALL('Table'),VALUES('Table'[service_id])) return IF(a=MAX('Table'[date_created]),a,BLANK())Then filter the measure is not blank :
v-diye-msft
6 years agoCommunity Support
Hi ToddMate
Use below measure:
Measure = var a = CALCULATE(MAX('Table'[date_created]),ALL('Table'),VALUES('Table'[service_id]))
return
IF(a=MAX('Table'[date_created]),a,BLANK())
Then filter the measure is not blank :