Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Grouping / summary feature?

Hi All, 

I am trying to replicate a feature from Tableau where I can group things together and give them a summary.

 

My data looks like this and for the different types of tasks I am looking to create a summary level "Service Delivery" & Back Office Admin

BarryRadio_0-1599478969044.png

I.e CRM is admin, Board Minutes are Service Delivery etc.. 

 

The only way I can thing I can think of is to:

 

1. create a new column

2. Use if statements to categorise it

 

This seems fairly clunky, just wondering if there is an elegant way of achieving this?

1 ACCEPTED SOLUTION
harshnathani
Community Champion
Community Champion

Hello @BarryRadio ,

You'll need to create a calculated column

You can use the SWITCH function.

Calculated column ??

SWITCH(

true(),

Table[Task] - "admin" Table[Task] - "Board Meeting", "CRM",

Table[Task] to "XXXX" , "Board"

)

Best regards
Harsh Nathani
Have I answered your question? Mark my position as a solution! Appreciate with a Kudos!! (Click the Thumbs button above)

View solution in original post

2 REPLIES 2
harshnathani
Community Champion
Community Champion

Hello @BarryRadio ,

You'll need to create a calculated column

You can use the SWITCH function.

Calculated column ??

SWITCH(

true(),

Table[Task] - "admin" Table[Task] - "Board Meeting", "CRM",

Table[Task] to "XXXX" , "Board"

)

Best regards
Harsh Nathani
Have I answered your question? Mark my position as a solution! Appreciate with a Kudos!! (Click the Thumbs button above)

amitchandak
Super User
Super User

@Anonymous , Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

 

You can use an simply put any column in table visual you will get distinct value.

You can put a text column and value column with aggregation, you will get aggregated data

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors