Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi all , how can i get date between from this range filter
also , how to calculate max and min base on selected this range filter?
thank you in advance
Best Regard
firstch
Solved! Go to Solution.
@firstch , Try in a measure
new measure =
var _max = maxx(allselected(slicer),slicer[value])
var _min = minx(allselected(slicer),slicer[value])
return
<Your code>
Hi @firstch,
May I know whether your problem has been resolved? If you still have problem, could you please provide some sample data from you slicer field table and date table and make your needs more clear? Thanks in advance!
Best Regards,
Community Support Team _ Caiyun
@firstch , Try in a measure
new measure =
var _max = maxx(allselected(slicer),slicer[value])
var _min = minx(allselected(slicer),slicer[value])
return
<Your code>
Hi @amitchandak
now i have 2 measure that is minyear ,maxyear can , how can i calculate max value base on my selected range filter above .
best regard
firstch