Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
105 | |
68 | |
47 | |
42 | |
39 |