Forum Discussion
Add to a "Summarize" Table
- 6 years ago
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])
))
While the result of summarize function is the same as the sales table. If you want to repeat a table, you can click ‘Edit Query’, go to Query Editor, right-click the sales query and choose ‘Duplicate’ to get a same table.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.