Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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.
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
Solved! Go to Solution.
Hi @Anonymous ,
You can try below code:-
Region =
IF (
LOCATION[Location] IN { "PL60", "MA81", "MA82" },
"EMEA",
IF ( LOCATION[Location] IN { "2201" }, "APAC", "NA" )
)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
Hi @Anonymous ,
You can try below code:-
Region =
IF (
LOCATION[Location] IN { "PL60", "MA81", "MA82" },
"EMEA",
IF ( LOCATION[Location] IN { "2201" }, "APAC", "NA" )
)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
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 47 | |
| 30 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 88 | |
| 72 | |
| 38 | |
| 26 | |
| 24 |