Forum Discussion
Anonymous
4 years agoNot applicable
Rankx with filter
Hi everyone, I have a problem with rank I want rank based on [PcsMes] With the any condition, i set Variable Val to put the conditions. When the parameters is to be ranked, the variable V...
- Anonymous4 years ago
Hi Anonymous ,
I have built a data sample, and used your DAX to reproduce your issue:
So based on my understanding, you want to rank values like 1,2,3 ,not 1,3,4..7,right?
If so, please try:
val = var _1=IF([Dias]<20,1,0) var _2=IF([Soma]<50,1,0) var _3=IF([Depart] in {"Help Desk","Suporte"},1,0) return _1*_2*_3Rank = IF([val]=1, RANKX(FILTER('New',[val]=1&& [Month]=EARLIER('New'[Month])),[PcsMes],,DESC,Dense),BLANK())Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
4 years agoNot applicable
Hi Anonymous ,
I have built a data sample, and used your DAX to reproduce your issue:
So based on my understanding, you want to rank values like 1,2,3 ,not 1,3,4..7,right?
If so, please try:
val =
var _1=IF([Dias]<20,1,0)
var _2=IF([Soma]<50,1,0)
var _3=IF([Depart] in {"Help Desk","Suporte"},1,0)
return _1*_2*_3
Rank = IF([val]=1, RANKX(FILTER('New',[val]=1&& [Month]=EARLIER('New'[Month])),[PcsMes],,DESC,Dense),BLANK())
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.