Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have this matrix that I would like to add a third column with the percent change between the two categories. For instance, the first value for U-16191 would be about a -17.99% decrease. How do I accomphish this?
Solved! Go to Solution.
Hi , @Anonymous
Try steps as below:
Create measure "measure value" to instead the field "value" :
Measure value =
VAR _inital_Request =
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER ( 'Table', 'Table'[Category] = "Initial Request" )
)
VAR _MPSC_Approved =
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER ( 'Table', 'Table'[Category] = "MPSC Approved" )
)
RETURN
IF (
ISINSCOPE ( 'Table'[Category] ),
SUM ( 'Table'[Value] ),
_MPSC_Approved / _inital_Request - 1
)
Change the column subtotals label from total to"Percentchange"
Here is a demo .
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi , @Anonymous
Try steps as below:
Create measure "measure value" to instead the field "value" :
Measure value =
VAR _inital_Request =
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER ( 'Table', 'Table'[Category] = "Initial Request" )
)
VAR _MPSC_Approved =
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER ( 'Table', 'Table'[Category] = "MPSC Approved" )
)
RETURN
IF (
ISINSCOPE ( 'Table'[Category] ),
SUM ( 'Table'[Value] ),
_MPSC_Approved / _inital_Request - 1
)
Change the column subtotals label from total to"Percentchange"
Here is a demo .
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I believe you want:
Measure =
VAR __Sum1 = SUMX(FILTER('Table',[Category] = "Initial Request"),[Value])
VAR __Sum2 = SUMX(FILTER('Table',[Category] = "MSPC Approved"),[Value])
RETURN
(__Sum1 - __Sum2) / __Sum1
Now, you may run into the issue where this measure ends up getting added multiple times. You can get around that by using something like this:
Hi Ryan,
Try to follow the steps below
Create a new column inside power bi with the formula below
Percentage change = (MPSC Approved / Initial Request) - 1
Then click on the column and click on modeling to change the format to percentage.
And finally, add this new column to your matrix.
🙂
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 49 | |
| 44 |