Forum Discussion

pshah's avatar
pshah
Regular Visitor
8 years ago
Solved

TopN + Others

I need to show Top(N) with Others... so say I want to see a total of 5 rows, but I want to show Top(3) and have the other 2 as "Others"... how would I go about doing that?   So my Top(3) are Japan,...
  • parry2k's avatar
    8 years ago

    Try this with measure:

     

    TopN + Others = IF ([Ctry Rank] <= 3, MAX(Country[Country Name]), "Others")