Forum Discussion
Anonymous
5 years agoNot applicable
Filter Table Visual Based on Slicer Selection
Hello, I have a table visual on my report that is composed of columns from four different tables. One of my slicers is choosing from a list of dates, in the format YYMM, in whole number datatype...
amitchandak
5 years agoSuper User
Anonymous , Try a measure like
measure =
var _max =maxx(allselected(Date), Date[YYMM])
return
calculate([measure],filter(all(Date),Date[YYMM]<=_max))