Hi, I hope someone can help: I have a simple table like this:
I need to make another table which groups/sums these rows together into new names (new1=A+B, new2=C, new3=D+E+F), like this:
I tried the 'Group' function but I couldn't make it work.
How can this be done?
Thank you very much
Solved! Go to Solution.
Hi @Anonymous
You may add a column with IF Function.Then drag them to table visual to get the table.
Column = IF ( Table1[categories] IN { "A", "B" }, "new1", IF ( Table1[categories] IN { "D", "E", "F" }, "new3", "new2" ) )
Or create the table with SUMMARIZE Function.
Table = SUMMARIZE(Table1,Table1[Column],"Open",SUM(Table1[Open]),"Engaged",SUM(Table1[Engaged]),"Highly",SUM(Table1[Highly]))
Regards,
Hi @Anonymous
You may add a column with IF Function.Then drag them to table visual to get the table.
Column = IF ( Table1[categories] IN { "A", "B" }, "new1", IF ( Table1[categories] IN { "D", "E", "F" }, "new3", "new2" ) )
Or create the table with SUMMARIZE Function.
Table = SUMMARIZE(Table1,Table1[Column],"Open",SUM(Table1[Open]),"Engaged",SUM(Table1[Engaged]),"Highly",SUM(Table1[Highly]))
Regards,
when you load the data (get data), go to Add Column\condtional column. You should be able to build what you want there as an extra column
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
119 | |
75 | |
66 | |
51 | |
49 |
User | Count |
---|---|
183 | |
101 | |
80 | |
79 | |
77 |