Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register 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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
81 | |
76 | |
61 | |
37 | |
33 |
User | Count |
---|---|
99 | |
56 | |
51 | |
42 | |
40 |