Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
So I have two tables I've brought in from a database, each with the columns MetricName and MetricValue (they are for different months).
I need to have a table showing the % change between every single MetricName. I have tried many of the solutions on this forum for a problem similar to this, but they do not work as they all tell me "a single value cannot be determined" etc.
I tried merging them in a query and then doing it, and I still get the same error. This does not change if I do a new measure, a new column, or a new quick measure; when it works, I get nothing but a single blank value. This can't be that hard...
Solved! Go to Solution.
Assuming I am understanding the question correctly....
Join your two tables based on MetricName
Then create the following measure (replacing all references of tables and columns with your actual table and column names):
Difference =
VAR SumOfTable1 = SUM(Table1[MetricValue])
VAR SumOfTable2 = SUM(Table2[MetricValue])
RETURN SumOfTable1 - SumOfTable2
Below is the test data I setup to show this measure:
Table1:
Table2:
Join:
Measure:
Output:
Assuming I am understanding the question correctly....
Join your two tables based on MetricName
Then create the following measure (replacing all references of tables and columns with your actual table and column names):
Difference =
VAR SumOfTable1 = SUM(Table1[MetricValue])
VAR SumOfTable2 = SUM(Table2[MetricValue])
RETURN SumOfTable1 - SumOfTable2
Below is the test data I setup to show this measure:
Table1:
Table2:
Join:
Measure:
Output:
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 79 | |
| 48 | |
| 35 | |
| 31 | |
| 27 |