Hello,
I have been scratching my head for a week on this question.
I have two tables
- Table 1 - it contains a list of people, the problem they worked on, and how many interactions they had on the problem.
- Table 2 - it contains a list of people who owned and solved a problem.
A problem is C followed by a number
For example,
Table 1, R had in total 7 interactions on 4 problems (C1 =2 , C5 =1, C3 =1, and C4 = 3)
Table 2, R owned and solved 1 problem (C3)
[TABLE="width: 448"]
<colgroup><col width="64" span="7" style="width:48pt"> </colgroup><tbody>[TR]
[TD="width: 64"]Owner[/TD]
[TD="width: 64"]Problem[/TD]
[TD="width: 64"]Interaction[/TD]
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]
[TD="width: 64"]Owner[/TD]
[TD="width: 64"]Problem[/TD]
[/TR]
[TR]
[TD]R[/TD]
[TD]C1[/TD]
[TD="align: right"]2[/TD]
[TD][/TD]
[TD][/TD]
[TD]R[/TD]
[TD]C3[/TD]
[/TR]
[TR]
[TD]K[/TD]
[TD]C2[/TD]
[TD="align: right"]3[/TD]
[TD][/TD]
[TD][/TD]
[TD]A[/TD]
[TD]C1[/TD]
[/TR]
[TR]
[TD]P[/TD]
[TD]C2[/TD]
[TD="align: right"]6[/TD]
[TD][/TD]
[TD][/TD]
[TD]B[/TD]
[TD]C4[/TD]
[/TR]
[TR]
[TD]R[/TD]
[TD]C5[/TD]
[TD="align: right"]1[/TD]
[TD][/TD]
[TD][/TD]
[TD]K[/TD]
[TD]C2[/TD]
[/TR]
[TR]
[TD]K[/TD]
[TD]C1[/TD]
[TD="align: right"]7[/TD]
[TD][/TD]
[TD][/TD]
[TD]P[/TD]
[TD]C5[/TD]
[/TR]
[TR]
[TD]R[/TD]
[TD]C3[/TD]
[TD="align: right"]1[/TD]
[TD][/TD]
[TD][/TD]
[TD]C[/TD]
[TD]C6[/TD]
[/TR]
[TR]
[TD]R[/TD]
[TD]C4[/TD]
[TD="align: right"]3[/TD]
[TD][/TD]
[TD][/TD]
[TD]D[/TD]
[TD]C7[/TD]
[/TR]
[TR]
[TD]P[/TD]
[TD]C1[/TD]
[TD="align: right"]7[/TD]
[TD][/TD]
[TD][/TD]
[TD]P[/TD]
[TD]C8[/TD]
[/TR]
</tbody>[/TABLE]
What I'm trying to write is a formula that gives me
- the number of interactions a owner did have (Table 1) on problems he didn't solve (Table 2).
In the example above, the formula will give me 6 (C1 =2 as it was owned by K , C5 =1 - owned by P, and C4 = 3 - owned by B)
I have tried to use SUMIFS with arrays, combination of SUM and IFS with arrays, etc. without success.
Any pointer, direction will be really helpful.
Thank you.
Issey
I have been scratching my head for a week on this question.
I have two tables
- Table 1 - it contains a list of people, the problem they worked on, and how many interactions they had on the problem.
- Table 2 - it contains a list of people who owned and solved a problem.
A problem is C followed by a number
For example,
Table 1, R had in total 7 interactions on 4 problems (C1 =2 , C5 =1, C3 =1, and C4 = 3)
Table 2, R owned and solved 1 problem (C3)
[TABLE="width: 448"]
<colgroup><col width="64" span="7" style="width:48pt"> </colgroup><tbody>[TR]
[TD="width: 64"]Owner[/TD]
[TD="width: 64"]Problem[/TD]
[TD="width: 64"]Interaction[/TD]
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]
[TD="width: 64"]Owner[/TD]
[TD="width: 64"]Problem[/TD]
[/TR]
[TR]
[TD]R[/TD]
[TD]C1[/TD]
[TD="align: right"]2[/TD]
[TD][/TD]
[TD][/TD]
[TD]R[/TD]
[TD]C3[/TD]
[/TR]
[TR]
[TD]K[/TD]
[TD]C2[/TD]
[TD="align: right"]3[/TD]
[TD][/TD]
[TD][/TD]
[TD]A[/TD]
[TD]C1[/TD]
[/TR]
[TR]
[TD]P[/TD]
[TD]C2[/TD]
[TD="align: right"]6[/TD]
[TD][/TD]
[TD][/TD]
[TD]B[/TD]
[TD]C4[/TD]
[/TR]
[TR]
[TD]R[/TD]
[TD]C5[/TD]
[TD="align: right"]1[/TD]
[TD][/TD]
[TD][/TD]
[TD]K[/TD]
[TD]C2[/TD]
[/TR]
[TR]
[TD]K[/TD]
[TD]C1[/TD]
[TD="align: right"]7[/TD]
[TD][/TD]
[TD][/TD]
[TD]P[/TD]
[TD]C5[/TD]
[/TR]
[TR]
[TD]R[/TD]
[TD]C3[/TD]
[TD="align: right"]1[/TD]
[TD][/TD]
[TD][/TD]
[TD]C[/TD]
[TD]C6[/TD]
[/TR]
[TR]
[TD]R[/TD]
[TD]C4[/TD]
[TD="align: right"]3[/TD]
[TD][/TD]
[TD][/TD]
[TD]D[/TD]
[TD]C7[/TD]
[/TR]
[TR]
[TD]P[/TD]
[TD]C1[/TD]
[TD="align: right"]7[/TD]
[TD][/TD]
[TD][/TD]
[TD]P[/TD]
[TD]C8[/TD]
[/TR]
</tbody>[/TABLE]
What I'm trying to write is a formula that gives me
- the number of interactions a owner did have (Table 1) on problems he didn't solve (Table 2).
In the example above, the formula will give me 6 (C1 =2 as it was owned by K , C5 =1 - owned by P, and C4 = 3 - owned by B)
I have tried to use SUMIFS with arrays, combination of SUM and IFS with arrays, etc. without success.
Any pointer, direction will be really helpful.
Thank you.
Issey