I have a question regarding "Word Cloud" custom visual. Let's say in my table, I have a column for "Keyword", "Cost" and "Clicks". I then create the following measures:
[Total Cost] = SUM(Table[Cost])
[Total Clicks] = SUM(Table[Clicks])
[CPC] = DIVIDE([Total Cost], [Total Clicks]) // Cost-per-click
I then add the Table[Keyword] in the "Category" section of Word Cloud visual, and add [CPC] in the "Values" section. All works fine, I see the keywords and size of the keyword is based on [CPC]. Bigger the CPC, bigger the size of the word and vice versa.
Question: Let's say I have 1000s of keywords in my Table. But I only want to show Top 20 keywords based on the CPC, also the keyword with lowest CPC should be the biggest and keyword with the highest CPC be the smallest.
Thanks, Shiv