Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need to count how many times 10 appears in a row. but the row has been
split up. the data is in a1:f1 then more in m1:z1. the countif function will not let me have more than one consectuive stretch for its range. any suggestions |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
So issue separate COUNTIFs for each range.
-- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Gover" wrote in message ... I need to count how many times 10 appears in a row. but the row has been split up. the data is in a1:f1 then more in m1:z1. the countif function will not let me have more than one consectuive stretch for its range. any suggestions |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Sep 13, 8:46 am, Gover wrote:
I need to count how many times 10 appears in a row. but the row has been split up. the data is in a1:f1 then more in m1:z1. the countif function will not let me have more than one consectuive stretch for its range. any suggestions And why doesn't the union reference operator work in this context? =COUNTIF((A1:F1,M1:Z1),"=10") |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
i tried this and in fact copied your formula, but the result gave me a value
error. i infact got around it by two sepaerate countif and +'d then together to give my result but thanks anyway "joeu2004" wrote: On Sep 13, 8:46 am, Gover wrote: I need to count how many times 10 appears in a row. but the row has been split up. the data is in a1:f1 then more in m1:z1. the countif function will not let me have more than one consectuive stretch for its range. any suggestions And why doesn't the union reference operator work in this context? =COUNTIF((A1:F1,M1:Z1),"=10") |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Sep 14, 2:56 am, Gover wrote:
"joeu2004" wrote: And why doesn't the union reference operator work in this context? =COUNTIF((A1:F1,M1:Z1),"=10")- Hide quoted text - i tried this and in fact copied your formula, but the result gave me a value error. Yes, I know. That's why I asked the question. But now I see the ambiguity of my phrasing in this context. You might have read it as a sarcastic way of asking why that does not work for __you__ -- that is, why you don't use that solution. That was not my intention. Sorry for the confusion. |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=COUNTIF(A1:F1,10)+COUNTIF(M1:Z1,10)
-- David Biddulph "Gover" wrote in message ... I need to count how many times 10 appears in a row. but the row has been split up. the data is in a1:f1 then more in m1:z1. the countif function will not let me have more than one consectuive stretch for its range. any suggestions |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
this worked, i was trying to be too clever i suppose by trying to do them
together rather than two seperate countif's thanks "David Biddulph" wrote: =COUNTIF(A1:F1,10)+COUNTIF(M1:Z1,10) -- David Biddulph "Gover" wrote in message ... I need to count how many times 10 appears in a row. but the row has been split up. the data is in a1:f1 then more in m1:z1. the countif function will not let me have more than one consectuive stretch for its range. any suggestions |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If you have XL-2007
use COUNTIFS function. It's more elegant than COUNTIF(rng1)+COUNTIF(rng2) "Gover" wrote: I need to count how many times 10 appears in a row. but the row has been split up. the data is in a1:f1 then more in m1:z1. the countif function will not let me have more than one consectuive stretch for its range. any suggestions |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
sorry only have 2003 - but thanks anyway
"Teethless mama" wrote: If you have XL-2007 use COUNTIFS function. It's more elegant than COUNTIF(rng1)+COUNTIF(rng2) "Gover" wrote: I need to count how many times 10 appears in a row. but the row has been split up. the data is in a1:f1 then more in m1:z1. the countif function will not let me have more than one consectuive stretch for its range. any suggestions |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Comparign two sets of time schedules to fidn best matches | Excel Worksheet Functions | |||
Two Sets of Time Data - One Chart | Charts and Charting in Excel | |||
countif with non-continous ranges | Excel Worksheet Functions | |||
Countif between ranges | Excel Discussion (Misc queries) | |||
how do i import multiple data sets at one time? | Excel Discussion (Misc queries) |