Hi,
I would like to sum the values in column C if the values in column E are >=25 AND <50. This is easily accomplished in Excel 2007 using the SUMIFS function but how can one do this in Excel 2003?
Thanks
Hi,
I would like to sum the values in column C if the values in column E are >=25 AND <50. This is easily accomplished in Excel 2007 using the SUMIFS function but how can one do this in Excel 2003?
Thanks
Hello,
use Sumproduct()
=sumproduct(--(E1:E100>=25),--(E1:E100<50),C1:C100)
cheers,
Hi,
A couple of ways.
You could either introduce a helper column and add a formula like:
copied down![]()
Please Login or Register to view this content.
Then use a standard
or alternatively use![]()
Please Login or Register to view this content.
SUMPRODUCT((C1:C100)*(E1:E100>=25)*(E1:E100<50))
changing the 100 as appropriate
Regards
Richard Buttrey
RIP - d. 06/10/2022
If any of the responses have helped then please consider rating them by clicking the small star iconbelow the post.
Or
=SUM(IF((E1:E100>=25)*(E1:E100<50),C1:C100,0))
this is an array formula and needs to be confirmed with CTRL-SHIFT-Enter
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks