Forum Discussion
Anonymous
6 years agoNot applicable
Summarize grouping by 2 columns
Hallo, I need to group the table 1) a column: grouped by date 2) second column: grouped by hours 3) 3d coumn: count distinct for each hour how many operators I have for each hour 4) 4 column: c...
- 6 years ago
Anonymous , Try like this
New column
Date =Table[INIZIO].date
hour =hour(Table[INIZIO])New Table
summarize(Table, Table[Date], Table[hour], "op nr", distinctcount(Table[MATRICOLA]), "contenitori",count(Table[CONTENITORE]))
amitchandak
Super User
6 years agoAnonymous , Try like this
New column
Date =Table[INIZIO].date
hour =hour(Table[INIZIO])
New Table
summarize(Table, Table[Date], Table[hour], "op nr", distinctcount(Table[MATRICOLA]), "contenitori",count(Table[CONTENITORE]))