Forum Discussion
FZOU
Helper IV
5 years agoDisplay by max date
Hello, i want to display the comment based on slicer by category and max date, max time, below an example : For Exp if i choose "Bike" on slicer it should display "OK 2" because he hav...
- 5 years ago
FZOU , Try a measure like
measure =
var _max = maxx(allselected(Table), Table[salesdate])
return
calculate(max(Table[comment]) , filter( Table, Table[salesdate] = _max))
amitchandak
Super User
5 years agoFZOU , Try a measure like
measure =
var _max = maxx(allselected(Table), Table[salesdate])
return
calculate(max(Table[comment]) , filter( Table, Table[salesdate] = _max))