Hi after reading many entries previously I finally hit a problem that wasn't answered previously
I have some survey data like this:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Number of shops[/TD]
[TD]Price range[/TD]
[TD]Product range[/TD]
[/TR]
[TR]
[/TR]
[TR]
[TD]1[/TD]
[TD]Neutral[/TD]
[TD]Satisfied[/TD]
[TD]Satisfied[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Satisfied[/TD]
[TD]Neutral[/TD]
[TD]Dissatisfied[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Satisfied[/TD]
[TD]Neutral[/TD]
[TD]Neutral[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Neutral[/TD]
[TD]Dissatisfied[/TD]
[TD]Dissatisfied[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]Satisfied[/TD]
[TD]Neutral[/TD]
[TD]Satisfied[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]Neutral[/TD]
[TD]Satisfied[/TD]
[TD]Dissatisfied[/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]Neutral[/TD]
[TD]Satisfied[/TD]
[TD]Dissatisfied[/TD]
[/TR]
[TR]
[TD]8[/TD]
[TD]Dissatisfied[/TD]
[TD]Neutral[/TD]
[TD]Neutral[/TD]
[/TR]
[TR]
[TD]9[/TD]
[TD]Neutral[/TD]
[TD]Satisfied[/TD]
[TD]Neutral[/TD]
[/TR]
[TR]
[TD]10[/TD]
[TD]Satisfied[/TD]
[TD]Dissatisfied[/TD]
[TD]Neutral[/TD]
[/TR]
</tbody>[/TABLE]
And I want to create a pivot table like this:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]Number of shops[/TD]
[TD]Price range[/TD]
[TD]Product range[/TD]
[/TR]
[TR]
[TD]Dissatisfied[/TD]
[TD]1[/TD]
[TD]2[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]Neutral[/TD]
[TD]5[/TD]
[TD]4[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]Satisfied[/TD]
[TD]4[/TD]
[TD]4[/TD]
[TD]2[/TD]
[/TR]
</tbody>[/TABLE]
As the measuring fields are placed side-by-side I naturally think that PowerPivot is required to handle this task. So I loaded the data in PowerPivot. But then I realized there needs to be a relationship between the 3 evaluation texts on rows to the columns at top. So I added it. And then you would've figured that multiple relationships between 2 tables aren't allowed, meaning this table doesn't seem to be achievable. Is that correct?
Thanks in advance for you guys' help!
I have some survey data like this:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Number of shops[/TD]
[TD]Price range[/TD]
[TD]Product range[/TD]
[/TR]
[TR]
[/TR]
[TR]
[TD]1[/TD]
[TD]Neutral[/TD]
[TD]Satisfied[/TD]
[TD]Satisfied[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Satisfied[/TD]
[TD]Neutral[/TD]
[TD]Dissatisfied[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Satisfied[/TD]
[TD]Neutral[/TD]
[TD]Neutral[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Neutral[/TD]
[TD]Dissatisfied[/TD]
[TD]Dissatisfied[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]Satisfied[/TD]
[TD]Neutral[/TD]
[TD]Satisfied[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]Neutral[/TD]
[TD]Satisfied[/TD]
[TD]Dissatisfied[/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]Neutral[/TD]
[TD]Satisfied[/TD]
[TD]Dissatisfied[/TD]
[/TR]
[TR]
[TD]8[/TD]
[TD]Dissatisfied[/TD]
[TD]Neutral[/TD]
[TD]Neutral[/TD]
[/TR]
[TR]
[TD]9[/TD]
[TD]Neutral[/TD]
[TD]Satisfied[/TD]
[TD]Neutral[/TD]
[/TR]
[TR]
[TD]10[/TD]
[TD]Satisfied[/TD]
[TD]Dissatisfied[/TD]
[TD]Neutral[/TD]
[/TR]
</tbody>[/TABLE]
And I want to create a pivot table like this:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]Number of shops[/TD]
[TD]Price range[/TD]
[TD]Product range[/TD]
[/TR]
[TR]
[TD]Dissatisfied[/TD]
[TD]1[/TD]
[TD]2[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]Neutral[/TD]
[TD]5[/TD]
[TD]4[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]Satisfied[/TD]
[TD]4[/TD]
[TD]4[/TD]
[TD]2[/TD]
[/TR]
</tbody>[/TABLE]
As the measuring fields are placed side-by-side I naturally think that PowerPivot is required to handle this task. So I loaded the data in PowerPivot. But then I realized there needs to be a relationship between the 3 evaluation texts on rows to the columns at top. So I added it. And then you would've figured that multiple relationships between 2 tables aren't allowed, meaning this table doesn't seem to be achievable. Is that correct?
Thanks in advance for you guys' help!