Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I need to count if there's the number of ocurrences containing 100/101 but
when it does not have the word "cancel". May be something like that: COUNTIF(A1:A10,"*100/101*") but <"cancel" Please help. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way:
=SUMPRODUCT((ISNUMBER(SEARCH("100/101",A1:A10))*ISERROR(SEARCH("cancel",A1:A10)))) -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- "mldancing" wrote: I need to count if there's the number of ocurrences containing 100/101 but when it does not have the word "cancel". May be something like that: COUNTIF(A1:A10,"*100/101*") but <"cancel" Please help. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=SUM(IF(ISNUMBER(SEARCH("100/101",A1:A100))*(NOT(ISNUMBER(SEARCH("cancel",A1:A1 00)))),1))
ctrl+shift+enter, not just enter "mldancing" wrote: I need to count if there's the number of ocurrences containing 100/101 but when it does not have the word "cancel". May be something like that: COUNTIF(A1:A10,"*100/101*") but <"cancel" Please help. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Both way works ... Thank you, Max and teethless mama!
"Teethless mama" wrote: =SUM(IF(ISNUMBER(SEARCH("100/101",A1:A100))*(NOT(ISNUMBER(SEARCH("cancel",A1:A1 00)))),1)) ctrl+shift+enter, not just enter "mldancing" wrote: I need to count if there's the number of ocurrences containing 100/101 but when it does not have the word "cancel". May be something like that: COUNTIF(A1:A10,"*100/101*") but <"cancel" Please help. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One question:
when do you decide that you have to use ctrl+shift+enter? "Teethless mama" wrote: =SUM(IF(ISNUMBER(SEARCH("100/101",A1:A100))*(NOT(ISNUMBER(SEARCH("cancel",A1:A1 00)))),1)) ctrl+shift+enter, not just enter "mldancing" wrote: I need to count if there's the number of ocurrences containing 100/101 but when it does not have the word "cancel". May be something like that: COUNTIF(A1:A10,"*100/101*") but <"cancel" Please help. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
countif but have two criteria | New Users to Excel | |||
countif criteria | Excel Worksheet Functions | |||
COUNTIF with two criteria | Excel Worksheet Functions | |||
Countif using format criteria not number criteria? | Excel Worksheet Functions | |||
Countif using format criteria....not number criteria? | Excel Worksheet Functions |