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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
miguel_garcia
Regular Visitor

Latitude/Longitude Classification/Conditional

Hello, 

 

I´ve been trying to classify a certain latitude/longitude(point) within Power Bi according to an specific area which is not exactly a Shape Maps / Choropletic Standard (Country, state, etc). 

 

The area its an specific one for a special need, I tried with ArcGis "Multiple Select" and its kinda what I need, but it only filters them, and I need to classify them according to that area, something quite like a "Conditional Column" According to that specific area.

 

example.PNG

 

 

Thank you very much for your help!!!!

 

Miguel

 

 

 

 

 
2 ACCEPTED SOLUTIONS
v-gizhi-msft
Community Support
Community Support

Hi,

 

According to your description, i create a simple sample to test:

111.PNG

Then i define a policy and create a calculated column to show its area:

Area = 
SWITCH (
    TRUE,
    'Table'[Latitude] <= 53.00
        && 'Table'[Latitude] > 52.00
        && 'Table'[Longtitude] <= -99.50
        && 'Table'[Longtitude] > -99.54, "Area1",
    'Table'[Latitude] <= 54.00
        && 'Table'[Latitude] > 53.00
        && 'Table'[Longtitude] <= -99.40
        && 'Table'[Longtitude] > -99.50, "Area2",
    'Table'[Latitude] <= 53.00
        && 'Table'[Latitude] > 52.98
        && 'Table'[Longtitude] <= -99.30
        && 'Table'[Longtitude] > -99.39, "Area3",
    'Table'[Latitude] <= 53.30
        && 'Table'[Latitude] > 53.00
        && 'Table'[Longtitude] <= -99.10
        && 'Table'[Longtitude] > -99.30, "Area4"
)

And it shows:

112.PNG

Add this [Area] column to map visual, the result shows:

113.PNG

Hope this helps.

 

Best Regards,

Giotto Zhi

 

View solution in original post

Thank you very much for your help Giotto, I solved it !

 

Miguel

View solution in original post

2 REPLIES 2
v-gizhi-msft
Community Support
Community Support

Hi,

 

According to your description, i create a simple sample to test:

111.PNG

Then i define a policy and create a calculated column to show its area:

Area = 
SWITCH (
    TRUE,
    'Table'[Latitude] <= 53.00
        && 'Table'[Latitude] > 52.00
        && 'Table'[Longtitude] <= -99.50
        && 'Table'[Longtitude] > -99.54, "Area1",
    'Table'[Latitude] <= 54.00
        && 'Table'[Latitude] > 53.00
        && 'Table'[Longtitude] <= -99.40
        && 'Table'[Longtitude] > -99.50, "Area2",
    'Table'[Latitude] <= 53.00
        && 'Table'[Latitude] > 52.98
        && 'Table'[Longtitude] <= -99.30
        && 'Table'[Longtitude] > -99.39, "Area3",
    'Table'[Latitude] <= 53.30
        && 'Table'[Latitude] > 53.00
        && 'Table'[Longtitude] <= -99.10
        && 'Table'[Longtitude] > -99.30, "Area4"
)

And it shows:

112.PNG

Add this [Area] column to map visual, the result shows:

113.PNG

Hope this helps.

 

Best Regards,

Giotto Zhi

 

Thank you very much for your help Giotto, I solved it !

 

Miguel

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.