Forum Discussion
ank1997
4 years agoMicrosoft Employee
Creating a visual combing 3 different tables with similar data
Hi all, I have three tables that I want to combine and be able to create a visual on a map. How do I show all of the states with data? For some reason it is only pulling the location from a single ...
v-yingjl
4 years agoCommunity Support
Hi ank1997 ,
If you want to show all data about states on the map, ideally you can create a calculated table like this to extract the state column as a single table and create relationships based on the state between these tables:
State table =
DISTINCT(
UNION(
DISTINCT('Table1'[State]),
DISTINCT('Table2'[State]),
DISTINCT('Table3'[State])
)
)
By the way, notice that there are also School columns on table1 and table3 so you need to consider it first because the final table would be like this:
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.