Hi, I'm new to this forum, while I did a few quick searches, I apologize if this has been asked before.
I have some data in two tables, and I'm trying to generate a meaningful view of all the data together. To illustrate:
Table 1:
Table 2:
The view I'd like to generate would look like this:
What would be the simplest way to achieve this?
I've tried using a SQL union on the two tables and then a pivot table on the generated data, but I'm having a hard time achieving the exact format I'm looking for.
I'm willing to write some VBA code, but as a first timer, that'd be significant investment for me. I'm checking to see if I'm not missing something simpler before jumping into that.
Would appreciate any help/pointers. Thanks!
I have some data in two tables, and I'm trying to generate a meaningful view of all the data together. To illustrate:
Table 1:
Code:
UserType Europe Americas Asia
Admin 10 5 5
PowerUsr 20 10 15
User 20 20 20
Code:
UserType Feature1 Feature2
Admin Yes Yes
PowerUsr Yes No
User No Yes
Code:
Admin Feature1 Feature2
Europe 10 10
Americas 5 5
Asia 5 5
PowerUsr
Europe 20 0
Americas 10 0
Asia 15 0
User
Europe 0 20
Americas 0 20
Asia 0 20
===================================
Totals 65 80
I've tried using a SQL union on the two tables and then a pivot table on the generated data, but I'm having a hard time achieving the exact format I'm looking for.
I'm willing to write some VBA code, but as a first timer, that'd be significant investment for me. I'm checking to see if I'm not missing something simpler before jumping into that.
Would appreciate any help/pointers. Thanks!