Forum Discussion
tfiegel037
2 years agoRegular Visitor
Create a slicer that also combines multiple selections
I have a data set that contains five regions, but I want to create a slicer that lists seven items: the five individual regions, a combined region, and then all regions. I don't just want to use grou...
- 2 years ago
This solution uses the two tables below. There are various ways to create them (manually, DAX, Power Query).
Measure:
Total Sales = CALCULATE ( SUM ( FactTable[Sales] ), CROSSFILTER ( RegionGroups[Region], FactTable[Region], BOTH ) )
DataInsights
2 years agoSuper User
This solution uses the two tables below. There are various ways to create them (manually, DAX, Power Query).
Measure:
Total Sales =
CALCULATE (
SUM ( FactTable[Sales] ),
CROSSFILTER ( RegionGroups[Region], FactTable[Region], BOTH )
)