Forum Discussion
Year by Year Comparison Graph
- 6 years ago
Hello Sheena
You will either want to combine the two tables into one using power query or create a locations table that will join the two data tables together.
You can create a locations table with something like this:
Locations = DISTINCT ( UNION ( DISTINCT ( '2018Table'[Locations] ), DISTINCT ( '2019Table'[Locations] ) ) )Then join each of your data tables into it.
Then you use the locations from the new table in your chart.
Sheena seems like your data is not read to visualize the way you want, share how your data table looks like and provide sample data to get you the solution.
- jdbuchanan716 years agoSuper User
Hello Sheena
You will either want to combine the two tables into one using power query or create a locations table that will join the two data tables together.
You can create a locations table with something like this:
Locations = DISTINCT ( UNION ( DISTINCT ( '2018Table'[Locations] ), DISTINCT ( '2019Table'[Locations] ) ) )Then join each of your data tables into it.
Then you use the locations from the new table in your chart.