I've been fighting with trying to get this to work and have been scouring the internet for answers.
I am needing find the SUM of Column C values where Columns A & B match and that SUM would be in D1 as in the example below (not a formula in D1 Example).
Currently I have the following formula the works, but it requires it to be pasted in multiple cells, which ends up being a column of matching values (not what I want, I want the sum of matching values in one cell).
{=SUM(IF($B$1:$B$57=$A1,IF($A$1:$A$57=$B1,$C$1:$C$57)))}
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]1/1/2017[/TD]
[TD]1/1/2017[/TD]
[TD]4[/TD]
[TD]SUM = 10 (ie. (A1&B1=C4)+(A3&B2=C2)+(A4&B3=C4))[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]1/2/2017[/TD]
[TD]1/3/2017[/TD]
[TD]2[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]1/3/2017[/TD]
[TD]1/4/2017[/TD]
[TD]4[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]1/4/2017[/TD]
[TD]2/1/2017[/TD]
[TD]6[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
If what I need ends up needing to be done in VBA, that fine, I just need to know how. (Note: I don't know VBA)
Thank you
I am needing find the SUM of Column C values where Columns A & B match and that SUM would be in D1 as in the example below (not a formula in D1 Example).
Currently I have the following formula the works, but it requires it to be pasted in multiple cells, which ends up being a column of matching values (not what I want, I want the sum of matching values in one cell).
{=SUM(IF($B$1:$B$57=$A1,IF($A$1:$A$57=$B1,$C$1:$C$57)))}
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]1/1/2017[/TD]
[TD]1/1/2017[/TD]
[TD]4[/TD]
[TD]SUM = 10 (ie. (A1&B1=C4)+(A3&B2=C2)+(A4&B3=C4))[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]1/2/2017[/TD]
[TD]1/3/2017[/TD]
[TD]2[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]1/3/2017[/TD]
[TD]1/4/2017[/TD]
[TD]4[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]1/4/2017[/TD]
[TD]2/1/2017[/TD]
[TD]6[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
If what I need ends up needing to be done in VBA, that fine, I just need to know how. (Note: I don't know VBA)
Thank you