Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I want to count the number of "yes" in a range and the number of "n/a" in a
range and get that total. If I enter =sum(if(range,"yes"+"n/a")) I get "#Value" If I enter =sum(if(range,"yes")+(range,"n/a")) I get "formula contains an error" I've tried several variations on this with sum, sumif, count, counta, countif... Can someone please give me a clue?? :D Thanks, Meenie -- Y****er |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=COUNTIF(A1:A100,"yes")
if n/a was entered as text =COUNTIF(A1:A100,"n/a") if n/a was enterd with the NA() function =SUMPRODUCT(--(ISNA(A1:A100))) best wishes -- www.stfx.ca/people/bliengme "Meenie" wrote: I want to count the number of "yes" in a range and the number of "n/a" in a range and get that total. If I enter =sum(if(range,"yes"+"n/a")) I get "#Value" If I enter =sum(if(range,"yes")+(range,"n/a")) I get "formula contains an error" I've tried several variations on this with sum, sumif, count, counta, countif... Can someone please give me a clue?? :D Thanks, Meenie -- Y****er |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
yes and n/a are both entered as text.
I know how to count one or the other, how to I count the total occurence of both within the range? -- Y****er "Bernard Liengme" wrote: =COUNTIF(A1:A100,"yes") if n/a was entered as text =COUNTIF(A1:A100,"n/a") if n/a was enterd with the NA() function =SUMPRODUCT(--(ISNA(A1:A100))) best wishes -- www.stfx.ca/people/bliengme "Meenie" wrote: I want to count the number of "yes" in a range and the number of "n/a" in a range and get that total. If I enter =sum(if(range,"yes"+"n/a")) I get "#Value" If I enter =sum(if(range,"yes")+(range,"n/a")) I get "formula contains an error" I've tried several variations on this with sum, sumif, count, counta, countif... Can someone please give me a clue?? :D Thanks, Meenie -- Y****er |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Add the two functions together...
=COUNTIF(A1:A100,"yes")+COUNTIF(A1:A100,"n/a") -- Best Regards, Luke M "Meenie" wrote in message ... yes and n/a are both entered as text. I know how to count one or the other, how to I count the total occurence of both within the range? -- Y****er "Bernard Liengme" wrote: =COUNTIF(A1:A100,"yes") if n/a was entered as text =COUNTIF(A1:A100,"n/a") if n/a was enterd with the NA() function =SUMPRODUCT(--(ISNA(A1:A100))) best wishes -- www.stfx.ca/people/bliengme "Meenie" wrote: I want to count the number of "yes" in a range and the number of "n/a" in a range and get that total. If I enter =sum(if(range,"yes"+"n/a")) I get "#Value" If I enter =sum(if(range,"yes")+(range,"n/a")) I get "formula contains an error" I've tried several variations on this with sum, sumif, count, counta, countif... Can someone please give me a clue?? :D Thanks, Meenie -- Y****er |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This will work for those =na() errors:
=countif(a1:a100,"#n/a") Bernard Liengme wrote: =COUNTIF(A1:A100,"yes") if n/a was entered as text =COUNTIF(A1:A100,"n/a") if n/a was enterd with the NA() function =SUMPRODUCT(--(ISNA(A1:A100))) best wishes -- www.stfx.ca/people/bliengme "Meenie" wrote: I want to count the number of "yes" in a range and the number of "n/a" in a range and get that total. If I enter =sum(if(range,"yes"+"n/a")) I get "#Value" If I enter =sum(if(range,"yes")+(range,"n/a")) I get "formula contains an error" I've tried several variations on this with sum, sumif, count, counta, countif... Can someone please give me a clue?? :D Thanks, Meenie -- Y****er -- Dave Peterson |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Meenie
Try =SUM(COUNTIF(A:A,{"Yes","n/a"})) -- Jacob (MVP - Excel) "Meenie" wrote: I want to count the number of "yes" in a range and the number of "n/a" in a range and get that total. If I enter =sum(if(range,"yes"+"n/a")) I get "#Value" If I enter =sum(if(range,"yes")+(range,"n/a")) I get "formula contains an error" I've tried several variations on this with sum, sumif, count, counta, countif... Can someone please give me a clue?? :D Thanks, Meenie -- Y****er |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Perfect!! Thanks Jacob :)
-- Y****er "Jacob Skaria" wrote: Hi Meenie Try =SUM(COUNTIF(A:A,{"Yes","n/a"})) -- Jacob (MVP - Excel) "Meenie" wrote: I want to count the number of "yes" in a range and the number of "n/a" in a range and get that total. If I enter =sum(if(range,"yes"+"n/a")) I get "#Value" If I enter =sum(if(range,"yes")+(range,"n/a")) I get "formula contains an error" I've tried several variations on this with sum, sumif, count, counta, countif... Can someone please give me a clue?? :D Thanks, Meenie -- Y****er |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
formula for multiple criteria inc. date range | Excel Worksheet Functions | |||
How can I define date range criteria in SUMIF formula? | Excel Worksheet Functions | |||
Criteria range in a Dcount formula | Excel Discussion (Misc queries) | |||
How do I put a date range in the criteria of a countif formula? | Excel Discussion (Misc queries) | |||
use a date range as criteria in a countif formula | Excel Worksheet Functions |