Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
Hi,
Hi
I have somes measure to get result of factors: A,B,C,D,Cost
Logic for :" Cost (exclude factor) = Cost - remaining factors
Now I wanna create a matrix that like below
{ Cost ( exclude factor) = Cost - (A+B+C+D) = 104-(10+34+22+23) = 25}
in case If I remove some factors (A,B,C,D), the matrix will auto calculate " Cost (Exclude factor)".
For example:
{ Cost ( exclude factor) = Cost - (A+C+D) = 104-(10+22+23) = 25}
Is there anyway to do it in PBI ?, by creating measure?
Hi,
I am not sure if I understood your question correctly, but please try to write a measure something like below.
Expected measure: =
SWITCH (
SELECTEDVALUE ( 'tablename'[Factor] ),
"Cost(exclude factor)"
= CALCULATE (
SUM ( 'tablename'[Amt] ),
FILTER ( ALLSELECTED ( 'tablename' ), 'tablename'[Factor] = "Cost" )
)
- CALCULATE (
SUM ( 'tablename'[Amt] ),
FILTER ( ALLSELECTED ( 'tablename' ), 'tablename'[Factor] <> "Cost" )
), SUM ( 'tablename'[Amt] )
)
Hi @Jihwan_Kim
Thanks for your help
However, My issue is that, each reasult in column "Amt" in matrix are Measure
For example:
A= [A], B = [B], C =[C], Cost =[Cost]
So logic for Cost (exclude factor) = Cost - remaining factors
Then to issue the matrix I create a measure like:
Amt =
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 64 | |
| 63 | |
| 48 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 119 | |
| 117 | |
| 38 | |
| 36 | |
| 27 |