Hello , i hope i can explain what i need the best i can. I have an Excel Pivot Table which is arranged like so:
_COMPANY | _CODE | QUANTITY
COMP. 1 | POS | 1
COMP. 1 | PDA | 2
COMP. 2 | POS | 2
COMP. 3 | POS | 1
COMP. 3 | PDA | 2
COMP. 4 | PDA | 1
I need a counter for the _COMPANY which is gonna count the total of companies which has all these diferent combinations. Example ->
(i need all different compinations be generated based on the range of quantity.)
POS |PDA |COUNTER RESULT
1 |0 |0 (COMPANIES)
0 |1 |1 (COMP.4)
1 |1 |0 (COMPANIES)
1 |2 |2 (COMP.1 & COMP.3)
2 |0 |1 (COMP.2)
2 |1 |0 (COMPANIES)
2 |2 |0 (COMPANIES)
Is it even possible to do that in Excel ?
```
```
I hope this helps to understand what I need, but it has wrong results.
_COMPANY | _CODE | QUANTITY
COMP. 1 | POS | 1
COMP. 1 | PDA | 2
COMP. 2 | POS | 2
COMP. 3 | POS | 1
COMP. 3 | PDA | 2
COMP. 4 | PDA | 1
I need a counter for the _COMPANY which is gonna count the total of companies which has all these diferent combinations. Example ->
(i need all different compinations be generated based on the range of quantity.)
POS |PDA |COUNTER RESULT
1 |0 |0 (COMPANIES)
0 |1 |1 (COMP.4)
1 |1 |0 (COMPANIES)
1 |2 |2 (COMP.1 & COMP.3)
2 |0 |1 (COMP.2)
2 |1 |0 (COMPANIES)
2 |2 |0 (COMPANIES)
Is it even possible to do that in Excel ?
```
_code | (Multiple Items) | ||||||||||
_code | (Multiple Items) | ||||||||||
Count of infoname | Column Labels | ||||||||||
Row Labels | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | Grand Total |
0 | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 3 |
1 | 235 | 235 | 235 | 235 | 235 | 235 | 235 | 235 | 235 | 235 | 235 |
2 | 170 | 170 | 170 | 170 | 170 | 170 | 170 | 170 | 170 | 170 | 170 |
3 | 43 | 43 | 43 | 43 | 43 | 43 | 43 | 43 | 43 | 43 | 43 |
4 | 26 | 26 | 26 | 26 | 26 | 26 | 26 | 26 | 26 | 26 | 26 |
5 | 7 | 7 | 7 | 7 | 7 | 7 | 7 | 7 | 7 | 7 | 7 |
6 | 4 | 4 | 4 | 4 | 4 | 4 | 4 | 4 | 4 | 4 | 4 |
7 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
8 | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 3 |
12 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
Grand Total | 493 | 493 | 493 | 493 | 493 | 493 | 493 | 493 | 493 | 493 | 493 |
I hope this helps to understand what I need, but it has wrong results.