Forum Discussion
Anonymous
4 years agoNot applicable
How to get Latest date data.
we have 3 visuals (in , out and Existing). we want to show the latest date data. Ex: we have the below data, so in powr bi Table visula there sould be method A should be available and in "In" ta...
- 4 years ago
Anonymous , You need to use a measure like below in table or use that visual level filter
measure =
var _max = maxx(allselected(Table), Table[Date]) //or use// maxx(all(Table), Table[Date])
return
calculate(sum(Table[Payment]), filter(Table, Table[Date] =_max))
amitchandak
4 years agoSuper User
Anonymous , You need to use a measure like below in table or use that visual level filter
measure =
var _max = maxx(allselected(Table), Table[Date]) //or use// maxx(all(Table), Table[Date])
return
calculate(sum(Table[Payment]), filter(Table, Table[Date] =_max))