Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
I have two different type datas. I need to create a new graphic by finding the new value between two of them. New table = Whole Sales - Retail.
Solved! Go to Solution.
Hi @altemural ,
i would create Measures.
Retail = CALCULATE(SUM('Table'[Value]), 'Table'[Type] = "Retail")
Whole Sales = CALCULATE(SUM('Table'[Value]),'Table'[Type] = "Whole Sales")
Other Sales = [Whole Sales] - [Retail]Regards,
Marcus
Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Hi @altemural ,
Please check if this is what you want:
1. Add an Index column in Power Query.
2. Create a measure.
Measure =
VAR RetailIndex =
MAX ( 'Table'[Index] ) - 12
VAR WholeSalesValue =
CALCULATE (
MAX ( 'Table'[Value] ),
FILTER ( ALL ( 'Table' ), 'Table'[Index] = RetailIndex )
)
RETURN
IF (
MAX ( 'Table'[Type] ) = "Retail",
MAX ( 'Table'[Value] ) - WholeSalesValue
)
3. Create a Pie chart or other visuals.
For details, please check the attached PBIX file.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @altemural ,
i would create Measures.
Retail = CALCULATE(SUM('Table'[Value]), 'Table'[Type] = "Retail")
Whole Sales = CALCULATE(SUM('Table'[Value]),'Table'[Type] = "Whole Sales")
Other Sales = [Whole Sales] - [Retail]Regards,
Marcus
Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 26 | |
| 23 | |
| 19 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 47 | |
| 44 | |
| 43 | |
| 35 | |
| 30 |