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 Expert
See image of sample data, i have a Total Sum measure for Value column which gives me the correct values for each product by Year as shown below, how can i add a % value as also shown in the orange highlight. in a matrix table PBI
Solved! Go to Solution.
Hi, @Anonymous
The pbix file is attached in the end of the reply.
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
I don't think it is possible to add a % value as also shown in the orange highlight. As a workaround, you may create a measure as below. The pbix file is attached in the end.
Result =
IF(
ISINSCOPE('Table'[Product])&&NOT(ISINSCOPE('Table'[Period]))&&NOT(ISINSCOPE('Table'[Year])),
var a = LOOKUPVALUE('Table'[Value],'Table'[Product],MAX('Table'[Product]),
'Table'[Year],MAX('Table'[Year]))
var b = LOOKUPVALUE('Table'[Value],'Table'[Product],MAX('Table'[Product]),
'Table'[Year],MIN('Table'[Year]))
return
DIVIDE(b-a,a)
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Allan
Thanks firstly for the excellent feedback do you have a pbix file you could share? Re solution
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 | |
| 49 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 122 | |
| 120 | |
| 38 | |
| 36 | |
| 29 |