Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

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...
  • JohanT's avatar
    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