Forum Discussion
Suggestions for Numeric Range Slicer based on aggregate data
- 9 years ago
Hi amummert,
If I understand you correctly, you can firstly create a summarize table to list all page ids and its page views, and add a relationship between the summarize table and your table with the page id column. Then you should be able to use the page views column from the summarize table as Number Range Slicer on report in your scenario.
The formula below to create the summarize table is for your reference. :smileyhappy:
Table = SUMMARIZE ( 'Your_Table_Name', 'Your_Table_Name'[Page ID], "Total Page Views", [Sum of Page Views] )Regards
Hi amummert,
If I understand you correctly, you can firstly create a summarize table to list all page ids and its page views, and add a relationship between the summarize table and your table with the page id column. Then you should be able to use the page views column from the summarize table as Number Range Slicer on report in your scenario.
The formula below to create the summarize table is for your reference. :smileyhappy:
Table =
SUMMARIZE (
'Your_Table_Name',
'Your_Table_Name'[Page ID],
"Total Page Views", [Sum of Page Views]
)
Regards
- amummert9 years agoNew Member
This works beautifully, thank you so much!