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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
arjuns0028
Helper I
Helper I

Grouping

How to create these groups 

 

Bangalore - Bangalore

 

Mumbai - Dombivali, Kalyan, Mumbai, Navi Mumbai, Panvel, Thane, Vasai

 

Delhi - Faridabad, Ghaziabad, Greater Noida, Gurgaon, New Delhi, Noida

 

Kolkata - Kolkata, Howrah

 

Pune - Pune

 

I also tried to apply a DAX formula

 

City_Category = IF (     [City_Name] = "Dombivali" ||     [City_Name] = "Kalyan" ||     [City_Name] = "Mumbai" ||     [City_Name] = "Navi Mumbai" ||     [City_Name] = "Panvel" ||     [City_Name] = "Thane" ||     [City_Name] = "Vasai",     "Mumbai",     IF (         [City_Name] = "Bangalore",         "Bangalore",         IF (             [City_Name] = "Faridabad" ||             [City_Name] = "Ghaziabad" ||             [City_Name] = "Greater Noida" ||             [City_Name] = "Gurgaon" ||             [City_Name] = "New Delhi" ||             [City_Name] = "Noida" ||             [City_Name] = "Delhi",             "Delhi",             IF (                 [City_Name] = "Kolkata",                 "Howrah",                 IF (                     [City_Name] = "Pune",                     "Pune",                     BLANK()

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @arjuns0028 ,

1. Custom column(m):

if List.Contains({"Bangalore"},[City_Name]) then "Bangalore" else if List.Contains({"Dombivali","Kalyan","Mumbai","Navi Mumbai","Panvel","Thane","Vasai"},[City_Name]) then "Mumbai" else if List.Contains({"Faridabad","Ghaziabad","Greater Noida","Gurgaon","New Delhi","Noida"},[City_Name]) then "Delhi" else if List.Contains({"Kolkata","Howrah"},[City_Name]) then "Kolkata" else if List.Contains({"Pune"},[City_Name]) then "Pune" else null

vcgaomsft_0-1706775393575.png

2. Calculated column(dax):

City_Category2 = 
SWITCH(
    TRUE(),
    'Table'[City_Name] = "Bangalore","Bangalore",
    'Table'[City_Name] IN {"Dombivali","Kalyan","Mumbai","Navi Mumbai","Panvel","Thane","Vasai"},"Mumbai",
    'Table'[City_Name] IN {"Faridabad","Ghaziabad","Greater Noida","Gurgaon","New Delhi","Noida"},"Delhi",
    'Table'[City_Name] IN {"Kolkata","Howrah"},"Kolkata",
    'Table'[City_Name] = "Pune","Pune"
)

vcgaomsft_1-1706775660835.png

Please check the pbix file.

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum -- China Power BI User Group

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @arjuns0028 ,

1. Custom column(m):

if List.Contains({"Bangalore"},[City_Name]) then "Bangalore" else if List.Contains({"Dombivali","Kalyan","Mumbai","Navi Mumbai","Panvel","Thane","Vasai"},[City_Name]) then "Mumbai" else if List.Contains({"Faridabad","Ghaziabad","Greater Noida","Gurgaon","New Delhi","Noida"},[City_Name]) then "Delhi" else if List.Contains({"Kolkata","Howrah"},[City_Name]) then "Kolkata" else if List.Contains({"Pune"},[City_Name]) then "Pune" else null

vcgaomsft_0-1706775393575.png

2. Calculated column(dax):

City_Category2 = 
SWITCH(
    TRUE(),
    'Table'[City_Name] = "Bangalore","Bangalore",
    'Table'[City_Name] IN {"Dombivali","Kalyan","Mumbai","Navi Mumbai","Panvel","Thane","Vasai"},"Mumbai",
    'Table'[City_Name] IN {"Faridabad","Ghaziabad","Greater Noida","Gurgaon","New Delhi","Noida"},"Delhi",
    'Table'[City_Name] IN {"Kolkata","Howrah"},"Kolkata",
    'Table'[City_Name] = "Pune","Pune"
)

vcgaomsft_1-1706775660835.png

Please check the pbix file.

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum -- China Power BI User Group

dufoq3
Super User
Super User

Hi @arjuns0028, if you want to write it as measure in DAX, it should be something like this:

City Category = 
SWITCH(
    TRUE,
    SELECTEDVALUE('Grouping'[City Name]) IN {"Dombivali", "Kalyan", "Mubai"}, "Mumbai",
    SELECTEDVALUE('Grouping'[City Name]) IN {"Kolkata", "Howrah"}, "Kolkata",
    "-"
)

 dufoq3_0-1706710036852.png

But there are many ways. You can also create separate table with [City Name] and [City Category] combinations and connect this new table to your data table via [City Name]

 


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

Your code ran successfully but In the colum I am getting blanks 

@arjuns0028 post a picture of your code and table where you have column with cities.


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.