Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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.
User | Count |
---|---|
134 | |
74 | |
72 | |
58 | |
54 |
User | Count |
---|---|
194 | |
95 | |
65 | |
62 | |
53 |