Forum Discussion
niteshtrehan89
Helper III
5 years agoFilled Map
Hi All, There is an urgent requirement where i have city data and I need to fill the state in the filled map. dataset :- City Sales Minneapolis 1000 Farg...
PhilipTreacy
Super User
5 years ago
The Filled map won't do this. You can use the Shape map to fill the state but you will need to add another column in your table for the State.
State = IF('Table'[City] = "Fargo", "North Dakota", IF ('Table'[City] = "Houston", "Texas", "Minnesota"))
The Legend can show the City.
Regards
Phil
niteshtrehan89
Helper III
5 years agoHi PhilipTreacy
Thanks for the solution. We don't have the state data in the dataset, from the city data we need to fill the state.