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,
I have a slicer for range of values. I want to be able to display what I entered in the range of values using selectedvalue function. My goal is to be able to display the minimum and maximum from fleet size entered into the upper box as highlighted below:
Pseudo code is selectedvalue(min(fleet_size))
Based on this, I should be able to display in the box above 300 - 500
Solved! Go to Solution.
@Anonymous , based on what I got
new measure =
var _max = maxx(allselected(Table),Table[Value])
var _min = minx(allselected(Table),Table[Value])
return
"Min Value " & _min & " Max Value " & _max
@Anonymous , based on what I got
new measure =
var _max = maxx(allselected(Table),Table[Value])
var _min = minx(allselected(Table),Table[Value])
return
"Min Value " & _min & " Max Value " & _max