Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=COUNTIF(Fundamentals!$B$2:$B$1000,OR("<*honey*", "<*cows*"))
this doesn't work... any suggestions? thanks very much. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If I read this right it will count all records that have neither Honey or
cows in the text I think it is equivalent to NOT AND("=*honey*","=*cows*")) since you have not told us what you want I have no suggestions. "SteveC" wrote in message ... =COUNTIF(Fundamentals!$B$2:$B$1000,OR("<*honey*", "<*cows*")) this doesn't work... any suggestions? thanks very much. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If I understand correctly, this may do what you want.
=COUNTA(D1:D10)-(COUNTIF(D1:D10,"honey")+COUNTIF(D1:D10,"cows")) Change the D1:D10 to yours. HTH Regards, Howard "SteveC" wrote in message ... =COUNTIF(Fundamentals!$B$2:$B$1000,OR("<*honey*", "<*cows*")) this doesn't work... any suggestions? thanks very much. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Probably this would be safer, as its not clear if 'honey' or 'cows' could appear within any cell together.
=SUMPRODUCT(N(LEN(SUBSTITUTE(SUBSTITUTE(Fundamenta ls!$B$2:$B$1000,"cows",""),"honey",""))=LEN(Fundam entals!$B$2:$B$1000))) Regards Robert McCurdy "SteveC" wrote in message ... =COUNTIF(Fundamentals!$B$2:$B$1000,OR("<*honey*", "<*cows*")) this doesn't work... any suggestions? thanks very much. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count text cells based on two criteria | Excel Worksheet Functions | |||
How can I fill a series in Nonadjacent cells eg Text 1, Text 2 | Excel Discussion (Misc queries) | |||
count cells containing text | Excel Worksheet Functions | |||
Count Position of Filtered TEXT cells in a column | Excel Worksheet Functions | |||
Count Position of Filtered TEXT cells in a column | Excel Worksheet Functions |