The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I want to create this matrix:
Q1 | Q2 | Q3 | Q4 | Total | |
Planned | 10 | 10 | 10 | 10 | 40 |
Actual | 5 | 7 | 12 | ||
Estimate by EOY | 5 | 7 | 10 | 10 | 32 |
Data
Planned Table
Project | Quarter | Resource | PlannedAmount |
P1 | Q1 | A | 5 |
P1 | Q1 | B | 5 |
P1 | Q2 | A | 5 |
P1 | Q2 | B | 5 |
P1 | Q3 | A | 5 |
P1 | Q3 | B | 5 |
P1 | Q4 | A | 5 |
P1 | Q4 | B | 5 |
Actual Table
Project | Quarter | Resource | ActualAmount |
P1 | Q1 | A | 3 |
P1 | Q1 | B | 2 |
P1 | Q2 | A | 3 |
P1 | Q2 | B | 4 |
Matrix
Column = Quarter
Rows:
Planned = sum(PlannedAmount)
Actual = sum(ActualAmout)
Estimate by EOY = if([Actual] > 0, [Actual], [Planned])
My Total Estimate by EOY is showing 12, instead of 32. Any suggestions would be appreciated. Thank you.
Solved! Go to Solution.
Hi @jabrillo
You can try
Estimate by EOY =
SUMX (
VALUES ( TableName[Quarter] ),
CALCULATE ( IF ( [Actual] > 0, [Actual], [Planned] ) )
)
Hi @jabrillo
You can try
Estimate by EOY =
SUMX (
VALUES ( TableName[Quarter] ),
CALCULATE ( IF ( [Actual] > 0, [Actual], [Planned] ) )
)
This works. Thank you so much.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
111 | |
79 | |
71 | |
48 | |
41 |
User | Count |
---|---|
138 | |
108 | |
71 | |
64 | |
58 |