Forum Discussion
linlab
5 years agoRegular Visitor
DAX expression for a numeric range slicer
Hello, I've selected the column month to work as a numeric range slicer. Is there any DAX expression to get the 2 values introduced in the slicer? I've tried MIN and MAX with SELECTEDVALUE but is no...
Anonymous
5 years agoNot applicable
It's very simple actually.
[The Max] = max( T[month] )
[The Min] = min( T[month] )where T is the table the 'month' field in the slicer lives in.
- linlab5 years agoRegular Visitor
Hi Anonymous ,
As you can see in my previous message to amitchandak, this expression also gives the max value in the table, not the value introduced in the slicer.