Forum Discussion
Anonymous
3 years agoNot applicable
Retrieve selected filter on visual
Hi all, Is it possible in Power BI desktop to retrieve the filters applied on a visual? For example, I have a visual on which I have added a filter on Calender[Date], I am only showing values for...
amitchandak
Super User
3 years agoAnonymous , Try a measure like
new measure =
var _max = maxx(allselected(Calender),Calender[Date])
var _min = minx(allselected(Calender),Calender[Date])
return
"Range " & _min to & " to " & _max
Anonymous
3 years agoNot applicable
Hi amitchandak will that result in the min and max date for my whole calendar table or the selection of the calendar table within the visual?