Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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
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 |
---|---|
76 | |
76 | |
55 | |
37 | |
34 |
User | Count |
---|---|
99 | |
56 | |
53 | |
44 | |
40 |