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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Gaspar89
Helper I
Helper I

Mapa Coropletico

Buenas, necesito mostrar un mapa y no se realmente como realizar el conjunto de los datos

 

Mi tabla de datos son apuntes por código postal de españa y estos los tengo clasificados con un número de convenio. Los convenios suelen estar delimitados por provincias.. pero una provincia puede tener varios convenios.

 

Necesitaría mostrar en el mapa de áreas la agrupación de los 131 convenios y al filtrar que me muestre el detalle de esos CP, así podría ver que área CP no tiene firmado un convenio y ha solicitado pago. Pero Tengo varios problemas... puedo tener en la tabla CP que no existan. Me podrían ayudar a como definirlo? para filtrando por comunidad o convenio me muestre los datos?

1 ACCEPTED SOLUTION
v-denglli-msft
Community Support
Community Support

Hi @Gaspar89 ,

Below is my test data.

vdengllimsft_0-1735019926691.png


Create a measure to flag provinces that have not signed the agreement and have requested payment.

Color = 
VAR aggrement = SUM('Table'[Agreement Number])
VAR RequestPayment = MAX('Table'[Request Payment])
RETURN
IF(aggrement=BLANK()&&RequestPayment="Yes","Red","Green")


Use this measure to set the color of the bubble.

vdengllimsft_1-1735020224194.png


Then on the map, the provinces that have not signed the agreement and are requesting payment are marked in a different color.

vdengllimsft_2-1735020397187.png


Please see the attached pbix for reference.

Best Regards,
Dengliang Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-denglli-msft
Community Support
Community Support

Hi @Gaspar89 ,

Below is my test data.

vdengllimsft_0-1735019926691.png


Create a measure to flag provinces that have not signed the agreement and have requested payment.

Color = 
VAR aggrement = SUM('Table'[Agreement Number])
VAR RequestPayment = MAX('Table'[Request Payment])
RETURN
IF(aggrement=BLANK()&&RequestPayment="Yes","Red","Green")


Use this measure to set the color of the bubble.

vdengllimsft_1-1735020224194.png


Then on the map, the provinces that have not signed the agreement and are requesting payment are marked in a different color.

vdengllimsft_2-1735020397187.png


Please see the attached pbix for reference.

Best Regards,
Dengliang Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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