Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello, I am new to Power BI and would like help creating a 'delta' chart based on the Bough / Sold amount for a sample Sales table. I have the following table below:
Based on the table above, I create 2 charts which is 1) Bought Amount Totals per Month and 2) Sold Amount Totals per Month.
Bought Total per Month which sums up the "Buy" column if "Sold = 'NO'" and "BoughtMonth = Month Criteria"
Sales Total per Month which sums up the "Sold" column if "Sold = 'YES'" and "Sold Month = Month Criteria"
I have already created the following above in Power BI. My data source is a SharePoint List, which is based on the Sales Table. Now, I would like to create a "Delta Table" showing the difference between the Sales and Bought Totals per month, something like this (which I created in Excel):
In Excel, I have done this easily because I was able to create manually table and just calculated the deducted values like so:
But in Power BI, I am having difficulty creating the table above. Please note that for reasons, the Sales Table cannot be re-structured anymore. I can add calculated columns and such but I can't remove any of the existing columns there.
Please help how I can do the delta table
Solved! Go to Solution.
Hi there,
Happy to help. You should be able to write a DAX Measure to do a comparison of the two values and put that on a chart in Power BI Desktop by Month. Queries look something like below:
DAX Measure for Buy:
Bought = CALCULATE ( SUM ( [Buy] ), TableName[Sold] = "No", TableName[BoughtMonth] = "Month Criteria" )
DAX Measure for Sell:
Sold = CALCULATE ( SUM ( [Sold] ), TableName[Sold] = "Yes", TableName[BoughtMonth] = "Month Criteria" )
DAX Comparison Measure:
Delta Comparison = [Bought] - [Sold]
I'm not sure what your "Month Criteria" is so I put that in as a placeholder for whatever value would need to go there for your first two measures. Hope this helps!
Reid Havens - Principal Consultant
PowerPivotPro
Hi there,
Happy to help. You should be able to write a DAX Measure to do a comparison of the two values and put that on a chart in Power BI Desktop by Month. Queries look something like below:
DAX Measure for Buy:
Bought = CALCULATE ( SUM ( [Buy] ), TableName[Sold] = "No", TableName[BoughtMonth] = "Month Criteria" )
DAX Measure for Sell:
Sold = CALCULATE ( SUM ( [Sold] ), TableName[Sold] = "Yes", TableName[BoughtMonth] = "Month Criteria" )
DAX Comparison Measure:
Delta Comparison = [Bought] - [Sold]
I'm not sure what your "Month Criteria" is so I put that in as a placeholder for whatever value would need to go there for your first two measures. Hope this helps!
Reid Havens - Principal Consultant
PowerPivotPro
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
79 | |
78 | |
59 | |
36 | |
33 |
User | Count |
---|---|
94 | |
61 | |
56 | |
49 | |
41 |