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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
Anonymous
Not applicable

Calculated column using SWITCH fucntion

Hi Experts ,

I am new to Power BI .

My requirement is I need to populate  calculated column as Group from the existing column Item  for example 

Item                       Group

Shirt                        Cloth

Pants                      Cloth 

Laptop                    Electronic Device 

Mobile                    Electronic Device

 

Kindly suggest .

 

Regards

Ganesh Jagdhane 

 

 

1 ACCEPTED SOLUTION
JarroVGIT
Resident Rockstar
Resident Rockstar

Hi @Anonymous ,

You may add a calculated column to your table with the following DAX:

Group = 
SWITCH(TRUE(),
    'Table'[Item] = "Shirt", "Cloth",
    'Table'[Item] = "Pants", "Cloth",
    'Table'[Item] = "Laptop", "Electronic Device",
    'Table'[Item] = "Mobile", "Electronic Device",
    "Other")

Is this what you are looking for?

 

Kind regards

Djerro123

-------------------------------

If this answered your question, please mark it as the Solution. This also helps others to find what they are looking for.

Keep those thumbs up coming! 🙂





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
JarroVGIT
Resident Rockstar
Resident Rockstar

Hi @Anonymous ,

You may add a calculated column to your table with the following DAX:

Group = 
SWITCH(TRUE(),
    'Table'[Item] = "Shirt", "Cloth",
    'Table'[Item] = "Pants", "Cloth",
    'Table'[Item] = "Laptop", "Electronic Device",
    'Table'[Item] = "Mobile", "Electronic Device",
    "Other")

Is this what you are looking for?

 

Kind regards

Djerro123

-------------------------------

If this answered your question, please mark it as the Solution. This also helps others to find what they are looking for.

Keep those thumbs up coming! 🙂





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




az38
Community Champion
Community Champion

@Anonymous @JarroVGIT 

in case of simple comparision with the only column it should be easier to use statement like

Group = 
SWITCH('Table'[Item],
    "Shirt", "Cloth",
    "Pants", "Cloth",
    "Laptop", "Electronic Device",
    "Mobile", "Electronic Device",
    "Other")

 

do not hesitate to give a kudo to useful posts and mark solutions as solution


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

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.