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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I am trying to make a third column in a matrix that has the percentage increase (decrease) from last year to this year but can't figure out how to make this calculated field.
Solved! Go to Solution.
Hi @Anonymous ,
We can create a measure using the following DAX query:
Measure =
DIVIDE (
MIN ( Table1[2019 Q1 Net Ordes.1] ) - MIN ( Table1[2018 Q1 Net Ordes] ),
MIN ( Table1[2018 Q1 Net Ordes] )
)Best Regards,
Teige
Hi @Anonymous ,
We can create a measure using the following DAX query:
Measure =
DIVIDE (
MIN ( Table1[2019 Q1 Net Ordes.1] ) - MIN ( Table1[2018 Q1 Net Ordes] ),
MIN ( Table1[2018 Q1 Net Ordes] )
)Best Regards,
Teige
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 63 | |
| 55 | |
| 41 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 97 | |
| 80 | |
| 35 | |
| 29 | |
| 25 |