Forum Discussion
Anonymous
6 years agoNot applicable
Add grouping using DAX
Hi all, I have columns: Store name Coleague name Sales And want to create table that includes only: Colleague name total sales for Store I don't want to add extra column for Store...
- 6 years ago
Hi Anonymous
I would use the SUMMARIZE() function to create the table and the SUM() for calculating the sales:
In SUMMARIZE you chose what to group by and then create the measure which we name -> "Sales" and define it by SUM()
Hope this is what youre looking for
JohanT
6 years agoFrequent Visitor
Hi Anonymous
I would use the SUMMARIZE() function to create the table and the SUM() for calculating the sales:
In SUMMARIZE you chose what to group by and then create the measure which we name -> "Sales" and define it by SUM()
Hope this is what youre looking for