Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare 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
User | Count |
---|---|
115 | |
95 | |
87 | |
76 | |
65 |
User | Count |
---|---|
138 | |
113 | |
110 | |
98 | |
93 |