This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
In a measure, how do I calculate the totals for each EventId while also maintain a correct Grand Total?
Currently, the grand total calculates all the rows like so:
Solved! Go to Solution.
Hi @WorkHard ,
You could create a measure by the following formula:
Total Event Amount =
IF (
ISFILTERED ( 'Table'[Amount] ),
CALCULATE (
SUM ( 'Table'[Amount] ),
FILTER (
ALL ( 'Table' ),
[Event]
= CALCULATE (
MAX ( 'Table'[Event] ),
FILTER ( 'Table', [Amount] IN ALLSELECTED ( 'Table'[Amount] ) )
)
)
),
CALCULATE ( SUM ( 'Table'[Amount] ), ALLEXCEPT ( 'Table', 'Table'[Event] ) )
)
If [Amount] as a slicer ,The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @WorkHard ,
You could create a measure by the following formula:
Total Event Amount =
IF (
ISFILTERED ( 'Table'[Amount] ),
CALCULATE (
SUM ( 'Table'[Amount] ),
FILTER (
ALL ( 'Table' ),
[Event]
= CALCULATE (
MAX ( 'Table'[Event] ),
FILTER ( 'Table', [Amount] IN ALLSELECTED ( 'Table'[Amount] ) )
)
)
),
CALCULATE ( SUM ( 'Table'[Amount] ), ALLEXCEPT ( 'Table', 'Table'[Event] ) )
)
If [Amount] as a slicer ,The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @WorkHard
Please try the below.
Total Event Amount =
IF (
ISFILTERED ( 'Table'[Event] ),
CALCULATE ( SUM ( 'Table'[Amount] ), ALLEXCEPT ( 'Table', 'Table'[Event] ) ),
SUM ( 'Table'[Amount] )
)
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
Hi !
You can use the INSCOPE() function to get the desired output;
Total = IF(ISINSCOPE(YourTable[EventID]), [Total Event Amount], [Amount])
Replace YourTable with correct table name.
Regards,
Hasham
Try as:
Measure =
CALCULATE(
SUM(TableName[Amount]),
ALLEXCEPT(TableName,TableName[Event])
)
Proud to be a Super User!
Hi @ChrisMendoza ,
This doesn't work if I use slicers to further slice through the data.
It shows the same total all the time.
Hi,
The solution provided by @ChrisMendoza works fine for me. This is the measure
@WorkHard - I don't know what you mean. Can you provide a sample of what you are expecting and what you are slicing by?
Proud to be a Super User!
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 26 | |
| 25 | |
| 22 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 42 | |
| 41 | |
| 40 | |
| 21 | |
| 20 |