Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
I am trying to create a measure that performs a calculation but adds together the value of the measure when multiple options are selected in the slicer instead of adding everything together. So for example if person 1 and person 2 are selected in one slicer and October and November are selected in another slicer, I want:
number of hours for person 1 * average % for person 1 for October
+ number of hours for person 1 * average % for person 1 for November
+ number of hours for person 2 * average % for person 2 for October
+ number of hours for person 2 * average % for person 2 for November,
instead of number of hours for October and November and person 1 and person 2 * average % for October and November and person 1 and person 2. I have already have a measure that will separate out the months selected in a slicer, but when I select multiple people from another slicer it is then totals the number of hours for person 1 & person 2 * average % for person 1 and person 2. Is there a way to add in the person selection as well as the month selection.
This is the measure I already have for the calculation to add the invidual months together is:
Solved! Go to Solution.
I think you can use
My Measure =
SUMX (
SUMMARIZE ( Table1, Table1[WeekCommencing].[Month], Table1[TeamMember] ),
CALCULATE ( SUM ( 'TABLE2'[Hours] ) * AVERAGE ( 'TABLE1'[Budget %] ) )
)
I think you can use
My Measure =
SUMX (
SUMMARIZE ( Table1, Table1[WeekCommencing].[Month], Table1[TeamMember] ),
CALCULATE ( SUM ( 'TABLE2'[Hours] ) * AVERAGE ( 'TABLE1'[Budget %] ) )
)
That's worked great, thanks
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 65 | |
| 52 | |
| 45 | |
| 23 | |
| 21 |
| User | Count |
|---|---|
| 141 | |
| 114 | |
| 50 | |
| 37 | |
| 30 |