Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi, I have created a new table with the "Summarize" function.
Part Number | Sales Value | Year |
A90555A | 545326 | 2019 |
A90555A | 437381 | 2020 |
A90555A | 568292 | 2021 |
C90558A | 556003 | 2019 |
C90558A | 498343 | 2020 |
C90558A | 301223 | 2021 |
E90557A | 831683 | 2019 |
E90557A | 839977 | 2020 |
E90557A | 475563 | 2021 |
Part Number | Total Sales per Item |
A90555A | 1550999 |
C90558A | 1355569 |
E90557A | 2147223 |
Solved! Go to Solution.
Hi, @vrossouw
Based on your description, it is available to create a calculated table as follows.
New = SUMMARIZE(
Sales,
Sales[Part Number],
Sales[Year],
"Total Sales per Item",
CALCULATE(SUM(Sales[Sales Value])
))
If you want to filter on the year, you can use ‘Part Number’, ‘Sales Value’ in a table visual and use ‘Year’ as the slicer to filter it.
If I misunderstand your thought, please show me your expected output. I am glad to solve the problem for you.
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, @vrossouw
Based on your description, it is available to create a calculated table as follows.
New = SUMMARIZE(
Sales,
Sales[Part Number],
Sales[Year],
"Total Sales per Item",
CALCULATE(SUM(Sales[Sales Value])
))
If you want to filter on the year, you can use ‘Part Number’, ‘Sales Value’ in a table visual and use ‘Year’ as the slicer to filter it.
If I misunderstand your thought, please show me your expected output. I am glad to solve the problem for you.
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 @vrossouw,
New Table = SUMMARIZE(Sales,Sales[Part Number],Sales[Year],"Total Sales per Item and Year",
CALCULATE(Sales[Sales Value]))
does it make sense what you want to do?
Why is there a relationship between the New Table and Sales Table?
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
126 | |
78 | |
78 | |
59 | |
51 |
User | Count |
---|---|
165 | |
83 | |
68 | |
68 | |
59 |