Reputation: 11
This is the current data table that I have, which is called 'Bookmark Information'.
I need to do 2 things:
Create a measure to find the total count of bookmarks per each bookmark title, but only from the rows that are the top 10 highest numbers in the column "Number of submission breaktie column".
Since I will later on add a date slicer, it should also only show me the top 10 highest numbers in the column "Number of submission breaktie column" per the date range in the slicer and the corresponding total count of bookmarks per each bookmark title.
I have tried something like this, but it is not giving me the correct number:
Sum of Bookmarks = SUM(Bookmark Information [Count of Bookmark])
Top 10 total bookmarks = CALCULATE([Sum of Bookmarks], TopN(10,'Bookmark Information','Bookmark Information'[Number of Submission breaktie column],DESC))
Upvotes: 0
Views: 238
Reputation: 1515
You can use Top N in Advanced filtering on "Filters on this visual" to get the result
You can add Date slicer up on it.
Upvotes: 0
Reputation:
Use code like this = sumx(values[tablecolumn]), if(measure) > 0, 1, blank())
.
Upvotes: 0