March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I am having a blank moment. I am trying to do a simple calculate but I can not seem to get my filters working correctly.
How can I write a measure that shows, If school 1 is selected bring back the total for Catchment A
so,
School 1 slelected = 30 catchment
School 2 selected = 30 catchment
School 3 selected = 70 catchment
School 4 selected = 70 catchment
School | pupil numbers | Catchment |
1 | 10 | A |
2 | 20 | A |
3 | 30 | B |
4 | 40 | B |
An easy one for someone who doesnt have brain fog I am sure! @Greg_Deckler ?
Solved! Go to Solution.
Thanks all! You helped me get to the right result!
Here is what I was trying to do :0)
Thanks all! You helped me get to the right result!
Here is what I was trying to do :0)
no probelm but for better practice use BLANK() instead of " " in the end because " " is text form to if you want to use it for other calculations
Filtered Sum =
CALCULATE (
SUM ( Table1[pupil numbers ] ),FILTER(ALL(Table1),Table1[Catchment ] = MAX(Table1[Catchment ] )
)
)
Hi,
Please check the below picture and the attached pbix file.
expected result: =
IF (
HASONEVALUE ( Data[School] ),
CALCULATE (
SUM ( Data[Pupil Numbers] ),
FILTER ( ALL ( Data ), Data[Catchment] = MAX ( Data[Catchment] ) )
)
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
21 | |
14 | |
11 | |
8 | |
5 |
User | Count |
---|---|
28 | |
21 | |
20 | |
13 | |
10 |