I am trying to use a calculated measure as a way to filter my data, but it\'s looking more difficult than expected. Let me explain through an example.
I have data of
You can tell QV to ignore your filtering in the field Amount by adding "Amount=" to your set analysis.
I dont know how your average calculation looks like but maybe:
(aggr(rank(sum({<Amount=>} Score1)), Category, UniqueID) +
aggr(rank(sum({<Amount=>} Score2)), Category, UniqueID) +
aggr(rank(sum({<Amount=>} Score3)), Category, UniqueID)) / 3
If I'm understanding correctly, I believe this solution should work:
new_measure_slider
.new_measure_slider
variable.=if(aggr([your average formula here], Category, UniqueID) >= new_measure_slider, [Category], null())
.
Basically, compare your formula to the new_measure_slider
variable. If true, use the Category (or UniqueID, whichever you need) as the dimension, if false, null()
.