Forum Discussion
HarryR
3 years agoRegular Visitor
Filter Minimum Y-Axis Based on Slicer
Hi all, This has been something I've been trying to do for some time, and thought I might be able to solve with Field Parameters, but alas I've hit another roadblock. I'm trying to add a slic...
- 3 years ago
Create a numeric field parameter slicer.
Then try use something similar to the following DAX as the measure:
No. Items = var items = CALCULATE(COUNT([Items]), ALLEXCEPT(Table, [Category]) var minItems = SELECTEDVALUE([Parameter Value]) return IF(items > minItems, items, BLANK())
vicky_
Super User
3 years agoCreate a numeric field parameter slicer.
Then try use something similar to the following DAX as the measure:
No. Items =
var items = CALCULATE(COUNT([Items]), ALLEXCEPT(Table, [Category])
var minItems = SELECTEDVALUE([Parameter Value])
return IF(items > minItems, items, BLANK())
HarryR
3 years agoRegular Visitor
Thanks man, this worked!