Forum Discussion
Kebas_Leech
Helper I
2 years agoPossible Bucketing
Hello everyone, I have a simple measure that calculates the % of losses that I have: [% losses] = Divide ( loss, allquantity) What I'm trying to figure out is a way to filter that measure, [%los...
- Anonymous2 years ago
Hi Kebas_Leech ,
I suggest you to create a Percentage table to help your calculation.
Percentage = GENERATESERIES(0,1,0.05)Measure:
Measure = CALCULATE(DISTINCTCOUNT('Table'[ID]),FILTER('Table',[% losses]<=MAX(Percentage[Percentage])))Result is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
2 years agoNot applicable
Hi Kebas_Leech ,
I suggest you to create a Percentage table to help your calculation.
Percentage =
GENERATESERIES(0,1,0.05)
Measure:
Measure =
CALCULATE(DISTINCTCOUNT('Table'[ID]),FILTER('Table',[% losses]<=MAX(Percentage[Percentage])))
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Kebas_Leech2 years ago
Helper I
Hello Anonymous
First of all, I want to personally thank you for using your time to help me.
It worked, I made some adjustments but overall, what was missing was the generateseries.
Thanks again.
Kindly