This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi,
I have 2 tables.
Table1
| Question |
| 1 |
2 |
Table2
| ID | Question 1 | Question 2 |
| 1 | Strongly Agree | Agree |
| 2 | Agree | Agree |
| 3 | Agree | Neutral |
I would like to create a measure in Table2 called RESPONSE. If I choose 1 in Table1 then RESPONSE will have the same result in Question 1; and if I choose 2 in Table2 then RESPONSE will have the same result in Question2.
Thank you for the assistance.
Solved! Go to Solution.
That would be tricky with the data in it's current form and would get harder and harder to maintain as you add more questions.
However if you unpivot Table 2 so that it looks like the following you can then create a simple rowcount measure and create charts and visuals off that.
| ID | Question | Response |
| 1 | 1 | Strongly Agree |
| 2 | 1 | Agree |
| 3 | 1 | Agree |
| 1 | 2 | Agree |
| 2 | 2 | Agree |
| 3 | 2 | Neutral |
That would be tricky with the data in it's current form and would get harder and harder to maintain as you add more questions.
However if you unpivot Table 2 so that it looks like the following you can then create a simple rowcount measure and create charts and visuals off that.
| ID | Question | Response |
| 1 | 1 | Strongly Agree |
| 2 | 1 | Agree |
| 3 | 1 | Agree |
| 1 | 2 | Agree |
| 2 | 2 | Agree |
| 3 | 2 | Neutral |
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 37 | |
| 32 | |
| 27 | |
| 24 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 50 | |
| 31 | |
| 26 | |
| 22 |