PC Review


Reply
Thread Tools Rate Thread

"countif" and "and" condition

 
 
=?Utf-8?B?bGFpbmdyYW0=?=
Guest
Posts: n/a
 
      27th Jun 2007
I have an table with cases eligible to be enrolled in a study on a worksheet
called LOG. There are 3 columns to indicate whether or not a case is eligible
(Q), enrolled (R) or refused (S). The values are either YES or NO.

I am trying to automate my counts for the following criteria (functions are
also listed):
1) **Eligible**
i.e. Eligible=YES
=COUNTIF(LOG!Q3:Q1000,"YES")
2) **Enrolled**
i.e. Eligible=YES and Enrolled=YES
=IF(LOG!Q3:Q1000="YES",COUNTIF(LOG!R3:R1000,"YES"))
3) **Not Enrolled, Other**
i.e. Eligible=YES and Enrolled=NO and Refused=NO
4) **Not Enrolled, Refused**
i.e. Eligible=YES and Enrolled=NO and Refused=YES
5) **Not Eligible**
i.e. Eligible=NO
=COUNTIF(LOG!Q3:Q1000,"NO")

I am having problems writing the formula for the "Not Enrolled, Other" and
"Not Enrolled, Refused" categories. I was hoping to use the AND function, but
it doesn't seem to be working.

This is what I was working on:
=IF(AND(LOG!Q3:Q1000="YES",LOG!S3:S1000="NO"),COUNTIF(LOG!R3:R1000,"YES"))

Thanks in advance for any suggestions,
Amanda
 
Reply With Quote
 
 
 
 
=?Utf-8?B?VG9wcGVycw==?=
Guest
Posts: n/a
 
      27th Jun 2007
use SUMPRODUCT

=SUMPRODUCT(--(Q3:Q1000=condition1),--(R3:R1000=condition2),--(s3:S1000=condition3))

Remove conditions as required

=SUMPRODUCT(--(Q3:Q1000="YES"))

=SUMPRODUCT(--(Q3:Q1000="YES"),--(R3:R1000="YES"))

etc

HTH


"laingram" wrote:

> I have an table with cases eligible to be enrolled in a study on a worksheet
> called LOG. There are 3 columns to indicate whether or not a case is eligible
> (Q), enrolled (R) or refused (S). The values are either YES or NO.
>
> I am trying to automate my counts for the following criteria (functions are
> also listed):
> 1) **Eligible**
> i.e. Eligible=YES
> =COUNTIF(LOG!Q3:Q1000,"YES")
> 2) **Enrolled**
> i.e. Eligible=YES and Enrolled=YES
> =IF(LOG!Q3:Q1000="YES",COUNTIF(LOG!R3:R1000,"YES"))
> 3) **Not Enrolled, Other**
> i.e. Eligible=YES and Enrolled=NO and Refused=NO
> 4) **Not Enrolled, Refused**
> i.e. Eligible=YES and Enrolled=NO and Refused=YES
> 5) **Not Eligible**
> i.e. Eligible=NO
> =COUNTIF(LOG!Q3:Q1000,"NO")
>
> I am having problems writing the formula for the "Not Enrolled, Other" and
> "Not Enrolled, Refused" categories. I was hoping to use the AND function, but
> it doesn't seem to be working.
>
> This is what I was working on:
> =IF(AND(LOG!Q3:Q1000="YES",LOG!S3:S1000="NO"),COUNTIF(LOG!R3:R1000,"YES"))
>
> Thanks in advance for any suggestions,
> Amanda

 
Reply With Quote
 
=?Utf-8?B?bGFpbmdyYW0=?=
Guest
Posts: n/a
 
      28th Jun 2007
Thanks a bunch. This worked great.

Amanda

"Toppers" wrote:

> use SUMPRODUCT
>
> =SUMPRODUCT(--(Q3:Q1000=condition1),--(R3:R1000=condition2),--(s3:S1000=condition3))
>
> Remove conditions as required
>
> =SUMPRODUCT(--(Q3:Q1000="YES"))
>
> =SUMPRODUCT(--(Q3:Q1000="YES"),--(R3:R1000="YES"))
>
> etc
>
> HTH
>
>
> "laingram" wrote:
>
> > I have an table with cases eligible to be enrolled in a study on a worksheet
> > called LOG. There are 3 columns to indicate whether or not a case is eligible
> > (Q), enrolled (R) or refused (S). The values are either YES or NO.
> >
> > I am trying to automate my counts for the following criteria (functions are
> > also listed):
> > 1) **Eligible**
> > i.e. Eligible=YES
> > =COUNTIF(LOG!Q3:Q1000,"YES")
> > 2) **Enrolled**
> > i.e. Eligible=YES and Enrolled=YES
> > =IF(LOG!Q3:Q1000="YES",COUNTIF(LOG!R3:R1000,"YES"))
> > 3) **Not Enrolled, Other**
> > i.e. Eligible=YES and Enrolled=NO and Refused=NO
> > 4) **Not Enrolled, Refused**
> > i.e. Eligible=YES and Enrolled=NO and Refused=YES
> > 5) **Not Eligible**
> > i.e. Eligible=NO
> > =COUNTIF(LOG!Q3:Q1000,"NO")
> >
> > I am having problems writing the formula for the "Not Enrolled, Other" and
> > "Not Enrolled, Refused" categories. I was hoping to use the AND function, but
> > it doesn't seem to be working.
> >
> > This is what I was working on:
> > =IF(AND(LOG!Q3:Q1000="YES",LOG!S3:S1000="NO"),COUNTIF(LOG!R3:R1000,"YES"))
> >
> > Thanks in advance for any suggestions,
> > Amanda

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Field Names: "LongName", "ShortName", "Code", "Description","Comments" PeteCresswell Microsoft Access 2 25th Feb 2009 11:41 PM
row by row comparison using a "countif" and "and" condition? controlfreak Microsoft Excel Programming 2 16th May 2008 02:10 PM
<FORM METHOD="post" onSubmit="return fieldcheck()" name="orientation" action="http://ws-kitty.BU.edu/AT/survey/orientation/script/write.asp" language="JavaScript"> Joeyej Microsoft ASP .NET 0 4th Jun 2004 08:55 PM
Manual "Windows Update" produces "ActiveX/active scripting" error message even with "LOW" security level setting in "Trusted" Zone Ray2 Windows XP Help 1 14th Nov 2003 06:50 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:58 AM.