I'm looking for a way of showing a % of total sales for each customer. However, I would like to have names for all the customers in the top 10 and then I would like for the remaining customer names to just show as "Other" or "Misc". This way you can tell if most of the sales are coming from the top customers, or if the customers outside the top 10 are really the majority. So, it would show customers 1-10, and then everyone else in the same chart. I have the top N rank already, but I don't see a way to do an if statement that changes the customer name based on the rank.
I tried this as a Measure and a Column:
_ClientSummary = IF([_ClientRank]>10,"Other",Sales[ClientName])
Any suggestions?