Forum Discussion
Ibadkhan
5 years agoHelper III
Customized Filter.
Hello! Hope you all are doing well. I just want to create a custom filter. That filter should behave like that when I select any month in that filter slicer, one of the table should have the filt...
- 5 years ago
Hi Ibadkhan ,
I create a simple example. Please check the attached PBIX file.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
5 years agoSuper User
Ibadkhan , In this month, is coming from date table or table having a date
measure =
var _max = maxx(allselected(Date), Date[Date])
return
calculate([Value measure], filter(all(Date),Date[Date]<= _max))
This may group data into one month , so refer this video how deal with that