Hi,
I have 2 sets of data (simplified) as such:
DATA-SET 1
<TBODY>
</TBODY>
In all there are over 500 rows in Column A (initiatives) and 8 different regions (represented by Column B, C, D)
The 1's represent that a specific Region is impacted by whatever initative in Column A.
DATA-SET 2
<TBODY>
</TBODY>
This set of data represents how much time will be spent on each Initative from Data-set 1 by week. (Column B) The weeks continue past the above example at least into 2016.
I am trying to summarise the hours spent by week by region. With the simplified data the results would look like this:
<TBODY>
</TBODY>
My main issue is that the various combinations of 8 regions gives me 255 various combinations, so IF, AND or OR would involve a lot of keying (at least where my skill set would take me). I am confused by arrays, but maybe they are the answer.
Any suggestions, comments or outright solutions would be greatly appreciated.
I have 2 sets of data (simplified) as such:
DATA-SET 1
A | B | C | D | |
1 | INITIATIVE | WEST | EAST | CENTRAL |
2 | PROJECT1 | 1 | 1 | |
3 | PROJECT2 | 1 | 1 |
<TBODY>
</TBODY>
In all there are over 500 rows in Column A (initiatives) and 8 different regions (represented by Column B, C, D)
The 1's represent that a specific Region is impacted by whatever initative in Column A.
DATA-SET 2
A | B | C | D | |
6 | INITIATIVE | TIME SPENT | ACTION | WEEK START |
7 | PROJECT1 | 2 | C | 2014/09/22 |
8 | PROJECT1 | 2.5 | C | 2014/09/29 |
9 | PROJECT2 | 1.5 | F | 2014/09/22 |
10 | PROJECT2 | 2 | C | 2014/09/22 |
11 | PROJECT2 | .25 | C | 2014/09/29 |
<TBODY>
</TBODY>
This set of data represents how much time will be spent on each Initative from Data-set 1 by week. (Column B) The weeks continue past the above example at least into 2016.
I am trying to summarise the hours spent by week by region. With the simplified data the results would look like this:
F | G | H | |
2 | REGION | 2014/09/22 | 2014/09/29 |
3 | WEST | 2 | 2.5 |
4 | EAST | 5.5 | 2.75 |
5 | CENTRAL | 3.5 | .25 |
<TBODY>
</TBODY>
My main issue is that the various combinations of 8 regions gives me 255 various combinations, so IF, AND or OR would involve a lot of keying (at least where my skill set would take me). I am confused by arrays, but maybe they are the answer.
Any suggestions, comments or outright solutions would be greatly appreciated.