Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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