Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a worksheet with Yes/No questions. I'm trying to recognize and count
each "x" in the Yes field for each specific question and it's not allowing me to. I can get it to add a range of cells, but not a group of specific cells. Anyone know how to do this? Thought it would look a little like this: =COUNTIF((B6,H6,I6,B21,H21,I21)"X") Thanks for the help! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
but not a group of specific cells.
EXACTLY which specific cells? Biff "1day@atime" wrote in message ... I have a worksheet with Yes/No questions. I'm trying to recognize and count each "x" in the Yes field for each specific question and it's not allowing me to. I can get it to add a range of cells, but not a group of specific cells. Anyone know how to do this? Thought it would look a little like this: =COUNTIF((B6,H6,I6,B21,H21,I21)"X") Thanks for the help! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=SUMPRODUCT(COUNTIF(INDIRECT({"B6","H6","I6","B21" ,"H21","I21"}),"X"))
-- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "1day@atime" wrote in message ... I have a worksheet with Yes/No questions. I'm trying to recognize and count each "x" in the Yes field for each specific question and it's not allowing me to. I can get it to add a range of cells, but not a group of specific cells. Anyone know how to do this? Thought it would look a little like this: =COUNTIF((B6,H6,I6,B21,H21,I21)"X") Thanks for the help! |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
And one mo
=(B6="x")+(H6="x")+(I6="x")+(B21="x")+(H21="x")+(I 21="x") 1day@atime wrote: I have a worksheet with Yes/No questions. I'm trying to recognize and count each "x" in the Yes field for each specific question and it's not allowing me to. I can get it to add a range of cells, but not a group of specific cells. Anyone know how to do this? Thought it would look a little like this: =COUNTIF((B6,H6,I6,B21,H21,I21)"X") Thanks for the help! -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
countif >0, specific cells | Excel Worksheet Functions | |||
How do I sum cells that have values from a countif formula? | Excel Worksheet Functions | |||
Need formula to count specific cells in a row | Excel Worksheet Functions | |||
Formula for counting specific cells with value greater than 0 | Excel Discussion (Misc queries) | |||
Formula for counting specific cells which are greater than 1 | Excel Discussion (Misc queries) |