The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I need to create a filled map with the state name and data label displayed on the map.
This is what I have right now, but I need the lables in there.
For example I need the state MN to say: Minnesota 43%
Is there a way to show the data label ont he actual map instead of just a tooltip?
Thanks!
Solved! Go to Solution.
Hi @kldinndorf
You can try the ARC GIS map, it can display the data label on the map.
You can refer to the following link
Create an ArcGIS map in Power BI - Power BI | Microsoft Learn
Enable and configure labels—ArcGIS for Power BI | Documentation
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @kldinndorf
How to display country and data label, and round it?
You can create a measure.
e.g
Measure=SELECTEDVALUE('Table'[Country])&ROUND(CALCULATE(SUM(...)),2)
Then set the measure as the label.
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @kldinndorf
You can try the ARC GIS map, it can display the data label on the map.
You can refer to the following link
Create an ArcGIS map in Power BI - Power BI | Microsoft Learn
Enable and configure labels—ArcGIS for Power BI | Documentation
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello, thank you for that solution. I need to display country name and the data label. Is there a way to get both of these? Right now I can just do either or.
I also cannot figure out how to round the data points. I have them set to only 2 decimal places in PowerBI, but once they are in the ArcGIS map they list a bunch of decimal places
Hi @kldinndorf
How to display country and data label, and round it?
You can create a measure.
e.g
Measure=SELECTEDVALUE('Table'[Country])&ROUND(CALCULATE(SUM(...)),2)
Then set the measure as the label.
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Is there a way to display country name and data labels at the same time?