Trying to match Note column with sum but currently, it's giving me the monthly total.
Current formula: =SUM(INDEX(C4:C47,0,MATCH($A$83,D4:D47,0)))
Sum should be 36.96 (18.99 + (5.99 x 3)).
Trying to match Note column with sum but currently, it's giving me the monthly total.
Current formula: =SUM(INDEX(C4:C47,0,MATCH($A$83,D4:D47,0)))
Sum should be 36.96 (18.99 + (5.99 x 3)).
Try this formula -
=SUMPRODUCT(($D$4:$D$47 = A83)*$C$4:$C$47)