Forum Discussion
m_wex
Helper I
5 years agoRanking Output
Trying, unsuccessfully, to display a customer ranking list using the following: Customer Ranking = IF(NOT(ISBLANK([Total Sales])), if([Total Sales]>0.01,RANKX(ALLSELECTED(Customers[Customer N...
m_wex
Helper I
5 years agoSolved the issue by putting a filter on the field so that no blanks are displayed, But how do you prevent a rank on the total line? The table shows all the ranked customers and provides total sales. But it also shows a 1 in the ranking column. Is the function hasonevalue the one to use?
AntrikshSharma
Community Champion
5 years agom_wex You can use ISINSCOPE to check the if the Customers[Customer Name] is being used for grouping in the visual. IF ( ISINSCOPE ( Customers[Customer Name] ), [Your Measure] )