Dear all,
I need to create table that show the differences between data in matrix.
MATRIX | A | B | C | D | E |
A | 100 | 55 | 77 | 88 | |
B | -25 | 55 | -700 | 55 | |
C | 55 | -33 | 55 | 22 | |
D | 77 | 668 | 55 | 2 | |
E | 88 | 33 | -55 | 55 |
I have for example the below data (company, other company, balance vs other company)
Company | VS | Balance |
A | B | 100 |
A | C | 55 |
A | D | 77 |
A | E | 88 |
B | A | -25 |
B | C | 55 |
B | D | -700 |
B | E | 55 |
C | A | 55 |
C | B | -33 |
C | D | 55 |
C | E | 22 |
D | A | 77 |
D | B | 668 |
D | C | 55 |
D | E | 2 |
E | A | 88 |
E | B | 33 |
E | C | -55 |
E | D | 55 |
for example:
company A think that company B owe her 100
company B think that her debt is onlt 25 (-25)
the input should be something like this:
Company | VS | Company | VS | DIFF |
A | B | 100 | -25 | 75 |
A | C | 55 | 55 | 110 |
A | D | 77 | 77 | 154 |
A | E | 88 | 88 | 176 |
B | C | 55 | -33 | 22 |
B | D | -700 | 668 | -32 |
B | E | 55 | 33 | 88 |
C | D | 55 | 55 | 110 |
C | E | 22 | -55 | -33 |
D | E | 2 | 55 | 57 |
total | 727 |
what should be the measure for DIFF column?
thanks a lot for your help!
Nir.