Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I create one column (Place)=
Hi @baron33 ,
You could update your desktop to the latest version(2.81.5831.501 May 2020) and re-publish the report to service.
@baron33 , Check Link
This what given see if this can help
Because the Location field can contain only a single value, it's best to create a new column in your dataset that combines all the address information (such as address, city, state, and ZIP Code) into a single, comma-separated values column that you can then use to add location-based information to your map.
Convert address and ZIP Code values to text format (Format: Text) before concatenating columns.
Using the Power BI Desktop Report Editor on the Modeling tab, in the Fields pane, click More next to the dataset you want to edit and choose New Column. Create a custom DAX formula that combines fields from multiple address columns into a single column. For example, to combine Address, City, Province, and Postal Code columns, your formula should look something like this:
Column = [Address] & ", " & [City] & ", " & [Province] & ", " & [Postal Code]
Give your new column a name that lets you easily identify it as your combined location data.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.