A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Multiple criteria - count if or sumproduct?



 
 
Thread Tools Display Modes
  #1  
Old August 23rd, 2009, 05:46 PM posted to microsoft.public.excel.worksheet.functions
dizzyflossy
external usenet poster
 
Posts: 4
Default Multiple criteria - count if or sumproduct?

Hi all, hoping someone out there can help with a formula question.

I have a set of data similar to the following

A B C
D E

1 East West North East
North
2 45 40 51 35
20


Row 1 refers to the locality, and row two to the opening hours a week.

I want to be able to ask, how many places are in the east and are open less
than or equal to 40 hours a week (2 criteria), and then build on this by
asking how many places in the east are are open more than 40 hours a week and
less than 60 hours a week (3 criteria).
I have tried several versions of countif and sumproduct but all to no avail.
Would be far simpler to use countifs (as in 2007) but my employers only use
2003!
Any help very much appreciated.
  #2  
Old August 23rd, 2009, 05:53 PM posted to microsoft.public.excel.worksheet.functions
Jacob Skaria
external usenet poster
 
Posts: 5,952
Default Multiple criteria - count if or sumproduct?

---how many places are in the east and are open less
than or equal to 40 hours a week (2 criteria),


=SUMPRODUCT(--(1:1="East"),--(2:2=40),--(2:20))

---how many places in the east are are open more than 40 hours a week and
less than 60 hours a week (3 criteria).


=SUMPRODUCT(--(1:1="East"),--(2:240),--(2:260))

If this post helps click Yes
---------------
Jacob Skaria


"dizzyflossy" wrote:

Hi all, hoping someone out there can help with a formula question.

I have a set of data similar to the following

A B C
D E

1 East West North East
North
2 45 40 51 35
20


Row 1 refers to the locality, and row two to the opening hours a week.

I want to be able to ask, how many places are in the east and are open less
than or equal to 40 hours a week (2 criteria), and then build on this by
asking how many places in the east are are open more than 40 hours a week and
less than 60 hours a week (3 criteria).
I have tried several versions of countif and sumproduct but all to no avail.
Would be far simpler to use countifs (as in 2007) but my employers only use
2003!
Any help very much appreciated.

  #3  
Old August 23rd, 2009, 05:57 PM posted to microsoft.public.excel.worksheet.functions
barry houdini[_26_]
external usenet poster
 
Posts: 1
Default Multiple criteria - count if or sumproduct?


Try these formulas

=SUMPROUCT((A1:E1="East")*(A2:E2=40))

and

=SUMPROUCT((A1:E1="East")*(A2:E260)*(A2:E240))


--
barry houdini
------------------------------------------------------------------------
barry houdini's Profile: http://www.thecodecage.com/forumz/member.php?userid=72
View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=127811

  #4  
Old August 23rd, 2009, 06:08 PM posted to microsoft.public.excel.worksheet.functions
dizzyflossy
external usenet poster
 
Posts: 4
Default Multiple criteria - count if or sumproduct?

Hi there, thanks for your almost instant response! The 3 criteria one worked
perfectly. The 2 criteria one returned "0", until I took off the third part
of the formula, the bit that says "(2:20))", now returning expected result!

Fabulous, thanks so much for your help!!!

"Jacob Skaria" wrote:

---how many places are in the east and are open less
than or equal to 40 hours a week (2 criteria),


=SUMPRODUCT(--(1:1="East"),--(2:2=40),--(2:20))

---how many places in the east are are open more than 40 hours a week and
less than 60 hours a week (3 criteria).


=SUMPRODUCT(--(1:1="East"),--(2:240),--(2:260))

If this post helps click Yes
---------------
Jacob Skaria


"dizzyflossy" wrote:

Hi all, hoping someone out there can help with a formula question.

I have a set of data similar to the following

A B C
D E

1 East West North East
North
2 45 40 51 35
20


Row 1 refers to the locality, and row two to the opening hours a week.

I want to be able to ask, how many places are in the east and are open less
than or equal to 40 hours a week (2 criteria), and then build on this by
asking how many places in the east are are open more than 40 hours a week and
less than 60 hours a week (3 criteria).
I have tried several versions of countif and sumproduct but all to no avail.
Would be far simpler to use countifs (as in 2007) but my employers only use
2003!
Any help very much appreciated.

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 01:17 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.