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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

IF

Hi All,

 

I would like to create a calculated column using IF. I am not sure how to use multiple Logical test.

For eg:

I have a set of locations. And each location belong to a certain region. It looks something like the image below.

Megha3012_0-1630321482238.png

I want to create a calculated column called "Region" in PowerBI, where it checks what location and allot the particular region.

 

Can I please know how can I implement that?

 

Any help would be appreciated!

 

Thank you!

Megha

 

1 ACCEPTED SOLUTION
Samarth_18
Community Champion
Community Champion

Hi @Anonymous ,

You can try below code:-

Region =
IF (
    LOCATION[Location] IN { "PL60", "MA81", "MA82" },
    "EMEA",
    IF ( LOCATION[Location] IN { "2201" }, "APAC", "NA" )
)

image.png

Thanks,

Samarth

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

View solution in original post

2 REPLIES 2
Samarth_18
Community Champion
Community Champion

Hi @Anonymous ,

You can try below code:-

Region =
IF (
    LOCATION[Location] IN { "PL60", "MA81", "MA82" },
    "EMEA",
    IF ( LOCATION[Location] IN { "2201" }, "APAC", "NA" )
)

image.png

Thanks,

Samarth

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

Anonymous
Not applicable

Thank you so much! @Samarth_18 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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