Forum Discussion
amaniramahi
5 years agoHelper V
Between slicer threshold
How to get the minimum and maximum value for slicer (type between).
The slicer is for a column with numbers data type.
amaniramahi , Please try like these
measure 1=
VAR _min = MINX( allselected('Table') , 'Table'[Value] ) // Value in slicer
VAR _max = MAXX(allselected('Table') , 'Table'[Value] ) // Value in slicer
2 Replies
- amitchandakSuper User
amaniramahi , Please try like these
measure 1=
VAR _min = MINX( allselected('Table') , 'Table'[Value] ) // Value in slicer
VAR _max = MAXX(allselected('Table') , 'Table'[Value] ) // Value in slicer- amaniramahiHelper V
Thank you amitchandak