I have some data that I want to summarize, matching certain criteria
Sample data:
ABCD Id Id2 Id3 Val 1 1 8 6 1 2 7 7 1 3 3 8 1 4 6 4 1 4 78 7 1 1 2 9 1 3 1 4 1 4 3 6 1 1 5 8 1 4 7 2
Now I want Val to be summed for each Id based on specific criteria (for example, Id2 = 4 and Id3 = 2) for each Id that has 100 values, but I want to avoid re-running sumifs for each Id , since the table is heavy.
What I have done so far is
= SUMIFS(D:D, A:A, "=1", B:B, "=4", C:C, "=2") = SUMIFS(D:D, A:A, "=2", B:B, "=4", C:C, "=2") = SUMIFS(D:D, A:A, "=3", B:B, "=4", C:C, "=2") = SUMIFS(D:D, A:A, "=4", B:B, "=4", C:C, "=2") ...
(if I remember sumifs syntax correctly)
Is there a faster way to avoid restarting sumifs for each Id ?