I am currently practicing my Access Skills and would appreciate any help with the below issue.
The thing is that I am trying to combine 3 tables into one. I am using one of them as a Master table (Fact Table) and the other 2 tables have extra information for the fact, however the information is the same but coming from different sources.You can see an example below (i am still figuring out stackoverflow so i am sorry for the poor styling)
Fact table
Name Age Gender
Nordon 21 male
ExtraInfo
Name Skills Level
Nordon Programming Good
Nordon Singing Poor
Nordon Drawing Good
ExtraInfo_2
Name Skills Level
Nordon Programming Good
Nordon Singing Good
Nordon Drawing Poor
When i try to do a statement with Inner Join in Access, I get something like this:
Results
Name Age Gender Skills_1 Skills_2 Level_1 Level_2
Nordon 21 male programming programming Good Good
Nordon 21 male programming Singing Good Good
Nordon 21 male programming Drawing Good Poor
Nordon 21 male Singing programming Poor Good
Nordon 21 male Singing Singing Poor Good
Nordon 21 male Singing Drawing Poor Poor
Basically it is mapping a Skill from table 1 to each Skill in table 2. And I was expecting something like this:
Results
Name Age Gender Skills_1 Skills_2 Level_1 Level_2
Nordon 21 male programming programming Good Good
Nordon 21 male Singing Singing Poor Good
Nordon 21 male Drawing Drawing Good Poor
Basically, I want to then check for inconsistencies, but I will do this on my own. Sometimes the tables Skills_1 and Skills_2 also have a different amount of entries per fact. Is there a way to awesome deal with this?
All help is appreciated!