Forum Discussion
kotlonarendra
1 year agoFrequent Visitor
Create a slicer that filters summarised (sum) values
I have the dataset as below Email Address Dept ID Alias Emp Id Voice Mins SMS Msgs # of Pages Dispatch Mins Data KB Currency Total Charges [email protected] 434...
Fowmy
Super User
1 year agokotlonarendra
One of option is to create a DAX calculated table as follows and use the Total Charges column on the slicer to filter.
SummarizedTable =
SUMMARIZE(
'YourTable',
'YourTable'[Email Address],
'YourTable'[Dept ID],
'YourTable'[Alias],
'YourTable'[Emp Id],
'YourTable'[Voice Mins],
'YourTable'[SMS Msgs],
'YourTable'[# of Pages],
'YourTable'[Dispatch Mins],
'YourTable'[Data KB],
'YourTable'[Currency],
"Total Charges (Sum)", SUM('YourTable'[Total Charges]),
"Row Count", COUNTROWS('YourTable')
)