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  

Countif Function??



 
 
Thread Tools Display Modes
  #1  
Old March 18th, 2010, 10:57 PM posted to microsoft.public.excel.worksheet.functions
Kevan
external usenet poster
 
Posts: 5
Default Countif Function??

I would like a formula which will allow me to calculate the number of mondays
in a month which are either C- closed, H- holiday. or TT- term from the
following list. This will be duplcated for each month. I have tried to use:
=COUNTIF(B$2:B$32,"Monday")+COUNTIF(C$2:C$32,"H") but this adds the day and
the letter.

Can anyone help.

Regards

Kevan

Date April '10
1 Thursday H
2 Friday C
3
4
5 Monday C
6 Tuesday H
7 Wednesday H
8 Thursday H
9 Friday H
10
11
12 Monday H
13 Tuesday TT
14 Wednesday TT
15 Thursday TT
16 Friday TT
17
18
19 Monday TT
20 Tuesday TT
21 Wednesday TT
22 Thursday TT
23 Friday TT
24
25
26 Monday TT
27 Tuesday TT
28 Wednesday TT
29 Thursday TT
30 Friday TT
31


Days 22

Term Time TT
Monday 18
Tuesday 18
Wednesday 18
Thursday 19
Friday 19

Holiday H
Monday 10
Tuesday 4
Wednesday 10
Thursday 11
Friday 11

  #2  
Old March 18th, 2010, 11:31 PM posted to microsoft.public.excel.worksheet.functions
Bob Phillips[_3_]
external usenet poster
 
Posts: 489
Default Countif Function??

Try

=SUMPRODUCT((A2:A200="Monday")*(B2:B200={"C","H"," TT"}))

--

HTH

Bob

"Kevan" wrote in message
...
I would like a formula which will allow me to calculate the number of
mondays
in a month which are either C- closed, H- holiday. or TT- term from the
following list. This will be duplcated for each month. I have tried to
use:
=COUNTIF(B$2:B$32,"Monday")+COUNTIF(C$2:C$32,"H") but this adds the day
and
the letter.

Can anyone help.

Regards

Kevan

Date April '10
1 Thursday H
2 Friday C
3
4
5 Monday C
6 Tuesday H
7 Wednesday H
8 Thursday H
9 Friday H
10
11
12 Monday H
13 Tuesday TT
14 Wednesday TT
15 Thursday TT
16 Friday TT
17
18
19 Monday TT
20 Tuesday TT
21 Wednesday TT
22 Thursday TT
23 Friday TT
24
25
26 Monday TT
27 Tuesday TT
28 Wednesday TT
29 Thursday TT
30 Friday TT
31


Days 22

Term Time TT
Monday 18
Tuesday 18
Wednesday 18
Thursday 19
Friday 19

Holiday H
Monday 10
Tuesday 4
Wednesday 10
Thursday 11
Friday 11



  #3  
Old March 18th, 2010, 11:32 PM posted to microsoft.public.excel.worksheet.functions
Bob Phillips[_3_]
external usenet poster
 
Posts: 489
Default Countif Function??

Or to use your ranges

=SUMPRODUCT((B$2:B$32="Monday")*(C$2:C$32={"C","H" ,"TT"}))

--

HTH

Bob

"Kevan" wrote in message
...
I would like a formula which will allow me to calculate the number of
mondays
in a month which are either C- closed, H- holiday. or TT- term from the
following list. This will be duplcated for each month. I have tried to
use:
=COUNTIF(B$2:B$32,"Monday")+COUNTIF(C$2:C$32,"H") but this adds the day
and
the letter.

Can anyone help.

Regards

Kevan

Date April '10
1 Thursday H
2 Friday C
3
4
5 Monday C
6 Tuesday H
7 Wednesday H
8 Thursday H
9 Friday H
10
11
12 Monday H
13 Tuesday TT
14 Wednesday TT
15 Thursday TT
16 Friday TT
17
18
19 Monday TT
20 Tuesday TT
21 Wednesday TT
22 Thursday TT
23 Friday TT
24
25
26 Monday TT
27 Tuesday TT
28 Wednesday TT
29 Thursday TT
30 Friday TT
31


Days 22

Term Time TT
Monday 18
Tuesday 18
Wednesday 18
Thursday 19
Friday 19

Holiday H
Monday 10
Tuesday 4
Wednesday 10
Thursday 11
Friday 11



  #4  
Old March 18th, 2010, 11:35 PM posted to microsoft.public.excel.worksheet.functions
T. Valko
external usenet poster
 
Posts: 15,759
Default Countif Function??

One way...

=SUMPRODUCT(--(B2:B32="Monday"),--(ISNUMBER(MATCH(C2:C32,{"C","H","TT"},0))))

--
Biff
Microsoft Excel MVP


"Kevan" wrote in message
...
I would like a formula which will allow me to calculate the number of
mondays
in a month which are either C- closed, H- holiday. or TT- term from the
following list. This will be duplcated for each month. I have tried to
use:
=COUNTIF(B$2:B$32,"Monday")+COUNTIF(C$2:C$32,"H") but this adds the day
and
the letter.

Can anyone help.

Regards

Kevan

Date April '10
1 Thursday H
2 Friday C
3
4
5 Monday C
6 Tuesday H
7 Wednesday H
8 Thursday H
9 Friday H
10
11
12 Monday H
13 Tuesday TT
14 Wednesday TT
15 Thursday TT
16 Friday TT
17
18
19 Monday TT
20 Tuesday TT
21 Wednesday TT
22 Thursday TT
23 Friday TT
24
25
26 Monday TT
27 Tuesday TT
28 Wednesday TT
29 Thursday TT
30 Friday TT
31


Days 22

Term Time TT
Monday 18
Tuesday 18
Wednesday 18
Thursday 19
Friday 19

Holiday H
Monday 10
Tuesday 4
Wednesday 10
Thursday 11
Friday 11



 




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 07:58 PM.


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