Forum Discussion
Help with DAX Measure
- Anonymous2 years ago
Hi chsardas1 ,
Thanks for the reply from parry2k , please allow me to provide another insight:
If you are trying to sort by a range of 20% based on %Cumulative, then you can use the switch function. More information about the switch function can be found in the documentation:SWITCH function (DAX) - DAX | Microsoft Learn.
Measure = SWITCH( TRUE(), MAX([%Cumulative]) <= 0.2, 1, MAX([%Cumulative]) <= 0.4, 2, MAX([%Cumulative]) <= 0.6, 3, MAX([%Cumulative]) <= 0.8, 4, 5 )If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Clara Gong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi chsardas1 ,
Thanks for the reply from parry2k , please allow me to provide another insight:
If you are trying to sort by a range of 20% based on %Cumulative, then you can use the switch function. More information about the switch function can be found in the documentation:SWITCH function (DAX) - DAX | Microsoft Learn.
Measure =
SWITCH(
TRUE(),
MAX([%Cumulative]) <= 0.2, 1,
MAX([%Cumulative]) <= 0.4, 2,
MAX([%Cumulative]) <= 0.6, 3,
MAX([%Cumulative]) <= 0.8, 4,
5
)
If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Clara Gong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.