Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I would like to count how many X's are in various cells within a worksheet.
Example: =countif(N8,S8,X8=X) Thank you |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=countif(D1:G4,"x")
Adjust range to suit............. Vaya con Dios, Chuck, CABGx3 "GVDLS" wrote: I would like to count how many X's are in various cells within a worksheet. Example: =countif(N8,S8,X8=X) Thank you |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way:
=COUNTIF(N8,"X")+COUNTIF(S8,"X")+COUNTIF(X8,"X") Or, if your pattern continues: =SUMPRODUCT(--(N8:X8="X"),--(MOD(COLUMN(N8:X8),5)=4)) In article , "GVDLS" wrote: I would like to count how many X's are in various cells within a worksheet. Example: =countif(N8,S8,X8=X) Thank you |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This is perfect, thank you very much!
"JE McGimpsey" wrote: One way: =COUNTIF(N8,"X")+COUNTIF(S8,"X")+COUNTIF(X8,"X") Or, if your pattern continues: =SUMPRODUCT(--(N8:X8="X"),--(MOD(COLUMN(N8:X8),5)=4)) In article , "GVDLS" wrote: I would like to count how many X's are in various cells within a worksheet. Example: =countif(N8,S8,X8=X) Thank you |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula format for Count or Countif funtion with two criterias | Excel Worksheet Functions | |||
COUNTIF or not to COUNTIF on a range in another sheet | Excel Worksheet Functions | |||
COUNTIF COMBINATION?? | Excel Worksheet Functions | |||
Combining IF and COUNTIF based on two columns | Excel Discussion (Misc queries) | |||
Countif - Countif | Excel Worksheet Functions |