Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi I have a Table
Where I have location and days of a week with Values
Ex
Location Mon Tue Wed Thu Fri Sat Sun
Atlanta 5 7 3 2 5 4 9
Dallas 5 3 3 4 3 1 5
I have to create 2 single select location slicers A & B
if I select Atlanta in Slicer A and Dallas in Slicer B
I want to add Atlanta Values to Dallas Values
@GR83 , In this case the first slcier need to a connected City table slicer and the second slicer need to on a disconnected city table slicer and you need a measure
M1= calculate(sum(Table[Value]) , keepfilters(Table, Table[City] in union(allselected(city[City]) , allselected(city2[City]) )
))
OR
M1= calculate(sum(Table[Value]) , filter(Table, Table[City] in union(allselected(city[City]) , allselected(city2[City]) )
))
Also check
Compare Categorical Data Using Slicers - Compare two Brands: https://youtu.be/exN4nTewgbc
Hi, Thanks for the reply, do I need to create Measure for each day of week seperately.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
71 | |
70 | |
38 | |
28 | |
26 |
User | Count |
---|---|
97 | |
88 | |
60 | |
43 | |
40 |