Forum Discussion
OlawaleSheks
Sep 22, 2024Copper Contributor
SUMIFS with Criteria on Horizontal and Vertical Axis
Hi, Please I need assistance with SUMIFS function to get values between two dates which are on horizontal axis and a third criteria which is on the vertical axis. As shown in the attached ima...
- Sep 22, 2024
OlawaleSheks Try SUMPRODUCT instead. In cell F3:
=SUMPRODUCT(($I$2:$N$2>=D3)*($I$2:$N$2<=E3)*($H$3:$H$14=C3)*$I$3:$N$14)
Copy down as needed.
siocona0909
Aug 06, 2025Copper Contributor
Wondering if any of you can help ..new to the community. Here goes trying to use sumifs but I cannot figure out what I am doing wrong. I just want to sum the distribution accts by state.
=SUMIFS(B9:I69,A9:A69,A78,B7:I7,B76)
Thank you in advance for any help.
- SergeiBaklanAug 07, 2025Diamond Contributor
SUMIFS() works on the same size ranges. Use SUMPRODCT() instead as in djclements​ answer in this thread. Something like