I have the following data table:
I want a matrix that always compares the amounts to the big amounts. I created a measure that I thought would always give me the total of all the Big amounts:
How do I get AllBig to show for all Sections?
This example isn't realistic but I tried to simplify the issue to the smallest set of data that showed the problem.
Solved! Go to Solution.
Hi, @Whatever1 , if you want such a result,
you might want to try this measure
AllBig =
CALCULATE (
SUM ( [Amount] ),
Table1[Group] = "Big",
ALLEXCEPT ( Table1, Table1[Color] )
)
Hi, @Whatever1 , if you want such a result,
you might want to try this measure
AllBig =
CALCULATE (
SUM ( [Amount] ),
Table1[Group] = "Big",
ALLEXCEPT ( Table1, Table1[Color] )
)
Thank you! I have been banging my head against the wall with this and just couldn't figure out why it wasn't working.
@Whatever1 , Try like
AllBig = calculate(sum([Amount]),filter(Table1,Table1[Group]="Big"))
Proud to be a Super User!
That makes it show on only one row:
Featured Session Drive Data Culture with Power BI: Vision, Strategy & Roadmap. Register here https://myignite.microsoft.com #MSIgnite #PowerPlatform #Power BI
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
User | Count |
---|---|
50 | |
18 | |
13 | |
12 | |
10 |
User | Count |
---|---|
38 | |
25 | |
18 | |
18 | |
15 |