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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! 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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 46 | |
| 42 | |
| 34 | |
| 31 | |
| 21 |
| User | Count |
|---|---|
| 133 | |
| 126 | |
| 95 | |
| 80 | |
| 65 |