Forum Discussion
Mapa Coropletico
- Anonymous1 year ago
Hi Gaspar89 ,
Below is my test data.
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.
Then on the map, the provinces that have not signed the agreement and are requesting payment are marked in a different color.
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.
Hi Gaspar89 ,
Below is my test data.
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.
Then on the map, the provinces that have not signed the agreement and are requesting payment are marked in a different color.
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.