Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hello
I am trying to have a slicer which display based on the ratio_teu.
However, the default slicer creation has an in between / range.
I learnt somewhere that it can be done with What -If Parameter slicer and i manage to do it with measures.
But this ratio_teu is a calculated column and i wasnt sure how to connect this to the what if slicer.
Solved! Go to Solution.
Hi @jeanL ,
If you are summing column [ratio_teu%] in the visual,
then please try the following formula.
Measure2 =
COUNTROWS (
FILTER (
SUMMARIZE (
vendor_final,
vendor_final[p2p_pair],
vendor_final[vendor_master_name],
"_sum", SUM ( vendor_final[ratio_teu%] )
),
[_sum] >= 'Min. Contribution %'[Min. Contribution % Value]
)
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@jeanL , A column can be used in the slicer and you can use the range option.
If you need what that you can use what if values in filter clasue
example measures
countrows(filter(Table, Table[Column] = [what if measure]))
measure =
var _min = minx(allselected(whatif), whatif[Value])
var _max = maxx(allselected(whatif), whatif[Value])
return
countrows(filter(Table, Table[Column] <= _max &&Table[Column] >= _min ) )
HI @amitchandak
I tried the solution you have shared.
Hi @jeanL ,
If you are summing column [ratio_teu%] in the visual,
then please try the following formula.
Measure2 =
COUNTROWS (
FILTER (
SUMMARIZE (
vendor_final,
vendor_final[p2p_pair],
vendor_final[vendor_master_name],
"_sum", SUM ( vendor_final[ratio_teu%] )
),
[_sum] >= 'Min. Contribution %'[Min. Contribution % Value]
)
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
66 | |
60 | |
47 | |
33 | |
32 |
User | Count |
---|---|
86 | |
75 | |
56 | |
50 | |
45 |