Forum Discussion
Ranking Total Issue.
- 4 years ago
Hi:
Would this streamline it a bit? For each level
Site Rank = IF (
NOT ( ISBLANK( [Percent] ) ), RANKX(ALL(dim_sites[Site_Name] ), [Percent], DESC))
Hi:
Would this streamline it a bit? For each level
Site Rank = IF (
NOT ( ISBLANK( [Percent] ) ), RANKX(ALL(dim_sites[Site_Name] ), [Percent], DESC))
- Whitewater1004 years agoSolution Sage
OK. Maybe the INSCOPE is better:
Rank In Scope = IF(
ISINSCOPE(dim_sites[Site_District]), RANKX(ALL(dim_sites[Site_District]),
[Percent]),
IF(
ISINSCOPE(dim_sites[Region]),
RANKX(ALLSELECTED(dim_sites[Region]),
[Percent]),
IF(
ISINSCOPE(dim_sites[Division] ),
RANKX(ALLSELECTED(dim_sites[Division] ),
[Percent])
)
)
- Anonymous4 years agoNot applicable
Whitewater100 The incsope didn't work either , the first code is better. can we not rank blanks for first code.
- Whitewater1004 years agoSolution Sage
Hi lklizo:
If possible, would you be able to send me reprentative data? I will get it but easier if I can see your set up. Thanks for your patience..