Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I need the formula which will do the following: If sheet1A3:A1000=70 and if
sheet1B3:B1000="OCT, then COUNTA(sheet1C3:C1000), it worked once and can't get it to work again. =IF('sheet1'!$A$3:$A200=70,IF('sheet1'!$B$3:$B200= "OCT",COUNTA('sheet1'!C3:C200),"")) |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try:
=IF(AND(Sheet1!$A$3:$A200=70,Sheet1!$B$3:$B200="OC T"),COUNTA(Sheet1!C3:C200),"") "Jeanette" wrote: I need the formula which will do the following: If sheet1A3:A1000=70 and if sheet1B3:B1000="OCT, then COUNTA(sheet1C3:C1000), it worked once and can't get it to work again. =IF('sheet1'!$A$3:$A200=70,IF('sheet1'!$B$3:$B200= "OCT",COUNTA('sheet1'!C3:C200),"")) |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
could you post an example, range A3 to A1000 the hole range has to be 70 to count C, or you want to count only the rows that are not empty and meet both conditions if the last assumption is true use =COUNTIFS(A3:A1000,70,B3:B1000,"Oct",C3:C1000,"<" ) "Jeanette" wrote: I need the formula which will do the following: If sheet1A3:A1000=70 and if sheet1B3:B1000="OCT, then COUNTA(sheet1C3:C1000), it worked once and can't get it to work again. =IF('sheet1'!$A$3:$A200=70,IF('sheet1'!$B$3:$B200= "OCT",COUNTA('sheet1'!C3:C200),"")) |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm not sure I followed you - but could'd this be the answer to your question:
=SUMPRODUCT(($A$3:$A1000=70)*($B$3:$B1000="OCT")) Micky "Jeanette" wrote: I need the formula which will do the following: If sheet1A3:A1000=70 and if sheet1B3:B1000="OCT, then COUNTA(sheet1C3:C1000), it worked once and can't get it to work again. =IF('sheet1'!$A$3:$A200=70,IF('sheet1'!$B$3:$B200= "OCT",COUNTA('sheet1'!C3:C200),"")) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Help with COUNTA formula | Excel Discussion (Misc queries) | |||
Formula for Counta | Excel Worksheet Functions | |||
Counta formula | Excel Discussion (Misc queries) | |||
help me on tough sum on conditions issue | Excel Worksheet Functions | |||
COUNTA Function not working =COUNTA(C3:C69,"NH") | Excel Worksheet Functions |