I need to create an overview table for the results of a survey. Data (answers) is stored in multiple Excel files and I'm wondering if there is a way to achieve it by using Power Query.
All the files (questionnaires) are saved in the same folder and have exactly the same structure. They consist of two columns, while the first column lists the questions (Q) and the second column - the answers (A), e.g.:
Table 1:
Questions | Answers |
---|---|
Q1 | A11 |
Q2 | A12 |
Q3 | A13 |
Table 2:
Questions | Answers |
---|---|
Q1 | A21 |
Q2 | A22 |
Q3 | A23 |
The resulting overview table should look like:
Questions | Table 1 | Table 2 |
---|---|---|
Q1 | A11 | A21 |
Q2 | A12 | A22 |
Q3 | A13 | A23 |
My Power Query skills are rather limited, I manage to append single files/tables below each other, but what I rather need is a kind of columnswise combination of tables.
Your help is much appreciated! Max
Table1
and whichTable2
? – Ron Rosenfeld