Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Good morning
I have a matrix that looks like this. Each value Loaded, Contacted, % Contact... are measures that are in the Values field in the matrix. I need to get a new column with the difference of the Current - Close column, i.e. Current Loaded - Closed Loaded etc.
To try to get something like that
Is there any way to get what I need?
Thank you all very much
Solved! Go to Solution.
Hi @Syndicate_Admin ,
According to your description, here's my solution.
1.Create a new table with a single column, create relationship with the fact table.
2.Create new measures or directly modify the original measures.
Contactados2 =
IF (
MAX ( 'New'[New Column] ) = "Prog",
CALCULATE (
[Contactados],
FILTER ( ALL ( 'Table' ), 'Table'[Column] = "Actual" )
)
- CALCULATE (
[Contactados],
FILTER ( ALL ( 'Table' ), 'Table'[Column] = "Cierre" )
),
[Contactados]
)
Aceptotas2 =
IF (
MAX ( 'New'[New Column] ) = "Prog",
CALCULATE (
[Aceptotas],
FILTER ( ALL ( 'Table' ), 'Table'[Column] = "Actual" )
)
- CALCULATE (
[Aceptotas],
FILTER ( ALL ( 'Table' ), 'Table'[Column] = "Cierre" )
),
[Contactados]
)
Get the correct result:
I attach my sample below for your reference.
Best regards,
Community Support Team_yanjiang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I was on vacation and hadn't seen the answer.
Thank you you have solved the problem I had
Hi @Syndicate_Admin ,
According to your description, here's my solution.
1.Create a new table with a single column, create relationship with the fact table.
2.Create new measures or directly modify the original measures.
Contactados2 =
IF (
MAX ( 'New'[New Column] ) = "Prog",
CALCULATE (
[Contactados],
FILTER ( ALL ( 'Table' ), 'Table'[Column] = "Actual" )
)
- CALCULATE (
[Contactados],
FILTER ( ALL ( 'Table' ), 'Table'[Column] = "Cierre" )
),
[Contactados]
)
Aceptotas2 =
IF (
MAX ( 'New'[New Column] ) = "Prog",
CALCULATE (
[Aceptotas],
FILTER ( ALL ( 'Table' ), 'Table'[Column] = "Actual" )
)
- CALCULATE (
[Aceptotas],
FILTER ( ALL ( 'Table' ), 'Table'[Column] = "Cierre" )
),
[Contactados]
)
Get the correct result:
I attach my sample below for your reference.
Best regards,
Community Support Team_yanjiang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.