+ Reply to Thread
Results 1 to 43 of 43

How do I use wild cards in nested array formulas?

  1. #1
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Hi!

    Try this:

    Normally entered

    =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    or progressive, plastic injection
    molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    >I have a spread sheet that has several columns. I have created a nested
    >array
    > formula to tell me how many items fall into my criteria, but I am missing
    > some information, see fomula below:
    >
    >
    > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > draw or progressive, plastic injection
    > molds"),'NON-APPLICABLE'!E3:E2113))}
    >
    > My problem is that I may or may not add information into the column
    > containing the statement "No draw or progressive..." I need to know how to
    > get a wild card to work after the word "molds". With the statement above,
    > it
    > counts just that and nothing else. I can get the wild card to work in any
    > other formula.




  2. #2
    Bob Phillips
    Guest

    Re: How do I use wild cards in nested array formulas?

    =COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*(ISNUMBER(FIND("No draw or
    progressive, plastic injection
    molds",'NON-APPLICABLE'!P3:P2113))),'NON-APPLICABLE'!E3:E2113))

    still an array formula

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > I have a spread sheet that has several columns. I have created a nested

    array
    > formula to tell me how many items fall into my criteria, but I am missing
    > some information, see fomula below:
    >
    >
    >

    {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > draw or progressive, plastic injection

    molds"),'NON-APPLICABLE'!E3:E2113))}
    >
    > My problem is that I may or may not add information into the column
    > containing the statement "No draw or progressive..." I need to know how to
    > get a wild card to work after the word "molds". With the statement above,

    it
    > counts just that and nothing else. I can get the wild card to work in any
    > other formula.




  3. #3
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Hi!

    If you have in cells:

    A1 = There is no draw or progressive, plastic injection molds

    A2 = No draw or progressive, plastic injection molds, referred Tom Jones

    A3 = There is no draw or progressive, plastic injection molds, referred Tom
    Jones

    The suggested formula WILL count all 3 of those cells. (provided the other
    criteria in the formula are met).

    If the formula is not counting those cells some other criteria may not be
    being met.

    > I need to know if the use of wild cards is allowed within a nested array


    No. Not in the type of formula you need.

    Want me to take a look at your file?

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > It will only count the items that have the phrase:
    >
    > "No draw or progressive, plastic injection molds"
    >
    > If I want to add a comment to the line, such as:
    >
    > ", referred Tom Jones",
    >
    > it will not count that.
    >
    > I need to know if the use of wild cards is allowed within a nested array
    > formula. So far I can not get that to work.
    >
    > Thanks,
    > Hopeit
    >
    > "Biff" wrote:
    >
    >> Care to elaborate?
    >>
    >> Biff
    >>
    >> "hopeit" <[email protected]> wrote in message
    >> news:[email protected]...
    >> > OOPS, I spoke too soon. It's still not counting every instance of what
    >> > I
    >> > need
    >> > to count.
    >> >
    >> > Hopeit
    >> >
    >> > "Biff" wrote:
    >> >
    >> >> Hi!
    >> >>
    >> >> Try this:
    >> >>
    >> >> Normally entered
    >> >>
    >> >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    >> >> draw
    >> >> or progressive, plastic injection
    >> >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >> >>
    >> >> Biff
    >> >>
    >> >> "hopeit" <[email protected]> wrote in message
    >> >> news:[email protected]...
    >> >> >I have a spread sheet that has several columns. I have created a
    >> >> >nested
    >> >> >array
    >> >> > formula to tell me how many items fall into my criteria, but I am
    >> >> > missing
    >> >> > some information, see fomula below:
    >> >> >
    >> >> >
    >> >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    >> >> > draw or progressive, plastic injection
    >> >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    >> >> >
    >> >> > My problem is that I may or may not add information into the column
    >> >> > containing the statement "No draw or progressive..." I need to know
    >> >> > how
    >> >> > to
    >> >> > get a wild card to work after the word "molds". With the statement
    >> >> > above,
    >> >> > it
    >> >> > counts just that and nothing else. I can get the wild card to work
    >> >> > in
    >> >> > any
    >> >> > other formula.
    >> >>
    >> >>
    >> >>

    >>
    >>
    >>




  4. #4
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    Thanks Biff! Thak seems to have takenm care of my issue and all seems to be
    working with my quick test. If I have problems when I get the formula in
    place, I'll let you know.

    Hopeit

    "Biff" wrote:

    > Hi!
    >
    > Try this:
    >
    > Normally entered
    >
    > =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    > or progressive, plastic injection
    > molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a spread sheet that has several columns. I have created a nested
    > >array
    > > formula to tell me how many items fall into my criteria, but I am missing
    > > some information, see fomula below:
    > >
    > >
    > > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > > draw or progressive, plastic injection
    > > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >
    > > My problem is that I may or may not add information into the column
    > > containing the statement "No draw or progressive..." I need to know how to
    > > get a wild card to work after the word "molds". With the statement above,
    > > it
    > > counts just that and nothing else. I can get the wild card to work in any
    > > other formula.

    >
    >
    >


  5. #5
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    OOPS, I spoke too soon. It's still not counting every instance of what I need
    to count.

    Hopeit

    "Biff" wrote:

    > Hi!
    >
    > Try this:
    >
    > Normally entered
    >
    > =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    > or progressive, plastic injection
    > molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a spread sheet that has several columns. I have created a nested
    > >array
    > > formula to tell me how many items fall into my criteria, but I am missing
    > > some information, see fomula below:
    > >
    > >
    > > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > > draw or progressive, plastic injection
    > > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >
    > > My problem is that I may or may not add information into the column
    > > containing the statement "No draw or progressive..." I need to know how to
    > > get a wild card to work after the word "molds". With the statement above,
    > > it
    > > counts just that and nothing else. I can get the wild card to work in any
    > > other formula.

    >
    >
    >


  6. #6
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Care to elaborate?

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > OOPS, I spoke too soon. It's still not counting every instance of what I
    > need
    > to count.
    >
    > Hopeit
    >
    > "Biff" wrote:
    >
    >> Hi!
    >>
    >> Try this:
    >>
    >> Normally entered
    >>
    >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    >> draw
    >> or progressive, plastic injection
    >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >>
    >> Biff
    >>
    >> "hopeit" <[email protected]> wrote in message
    >> news:[email protected]...
    >> >I have a spread sheet that has several columns. I have created a nested
    >> >array
    >> > formula to tell me how many items fall into my criteria, but I am
    >> > missing
    >> > some information, see fomula below:
    >> >
    >> >
    >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    >> > draw or progressive, plastic injection
    >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    >> >
    >> > My problem is that I may or may not add information into the column
    >> > containing the statement "No draw or progressive..." I need to know how
    >> > to
    >> > get a wild card to work after the word "molds". With the statement
    >> > above,
    >> > it
    >> > counts just that and nothing else. I can get the wild card to work in
    >> > any
    >> > other formula.

    >>
    >>
    >>




  7. #7
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    It will only count the items that have the phrase:

    "No draw or progressive, plastic injection molds"

    If I want to add a comment to the line, such as:

    ", referred Tom Jones",

    it will not count that.

    I need to know if the use of wild cards is allowed within a nested array
    formula. So far I can not get that to work.

    Thanks,
    Hopeit

    "Biff" wrote:

    > Care to elaborate?
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > > OOPS, I spoke too soon. It's still not counting every instance of what I
    > > need
    > > to count.
    > >
    > > Hopeit
    > >
    > > "Biff" wrote:
    > >
    > >> Hi!
    > >>
    > >> Try this:
    > >>
    > >> Normally entered
    > >>
    > >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    > >> draw
    > >> or progressive, plastic injection
    > >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    > >>
    > >> Biff
    > >>
    > >> "hopeit" <[email protected]> wrote in message
    > >> news:[email protected]...
    > >> >I have a spread sheet that has several columns. I have created a nested
    > >> >array
    > >> > formula to tell me how many items fall into my criteria, but I am
    > >> > missing
    > >> > some information, see fomula below:
    > >> >
    > >> >
    > >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > >> > draw or progressive, plastic injection
    > >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >> >
    > >> > My problem is that I may or may not add information into the column
    > >> > containing the statement "No draw or progressive..." I need to know how
    > >> > to
    > >> > get a wild card to work after the word "molds". With the statement
    > >> > above,
    > >> > it
    > >> > counts just that and nothing else. I can get the wild card to work in
    > >> > any
    > >> > other formula.
    > >>
    > >>
    > >>

    >
    >
    >


  8. #8
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Hi!

    If you have in cells:

    A1 = There is no draw or progressive, plastic injection molds

    A2 = No draw or progressive, plastic injection molds, referred Tom Jones

    A3 = There is no draw or progressive, plastic injection molds, referred Tom
    Jones

    The suggested formula WILL count all 3 of those cells. (provided the other
    criteria in the formula are met).

    If the formula is not counting those cells some other criteria may not be
    being met.

    > I need to know if the use of wild cards is allowed within a nested array


    No. Not in the type of formula you need.

    Want me to take a look at your file?

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > It will only count the items that have the phrase:
    >
    > "No draw or progressive, plastic injection molds"
    >
    > If I want to add a comment to the line, such as:
    >
    > ", referred Tom Jones",
    >
    > it will not count that.
    >
    > I need to know if the use of wild cards is allowed within a nested array
    > formula. So far I can not get that to work.
    >
    > Thanks,
    > Hopeit
    >
    > "Biff" wrote:
    >
    >> Care to elaborate?
    >>
    >> Biff
    >>
    >> "hopeit" <[email protected]> wrote in message
    >> news:[email protected]...
    >> > OOPS, I spoke too soon. It's still not counting every instance of what
    >> > I
    >> > need
    >> > to count.
    >> >
    >> > Hopeit
    >> >
    >> > "Biff" wrote:
    >> >
    >> >> Hi!
    >> >>
    >> >> Try this:
    >> >>
    >> >> Normally entered
    >> >>
    >> >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    >> >> draw
    >> >> or progressive, plastic injection
    >> >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >> >>
    >> >> Biff
    >> >>
    >> >> "hopeit" <[email protected]> wrote in message
    >> >> news:[email protected]...
    >> >> >I have a spread sheet that has several columns. I have created a
    >> >> >nested
    >> >> >array
    >> >> > formula to tell me how many items fall into my criteria, but I am
    >> >> > missing
    >> >> > some information, see fomula below:
    >> >> >
    >> >> >
    >> >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    >> >> > draw or progressive, plastic injection
    >> >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    >> >> >
    >> >> > My problem is that I may or may not add information into the column
    >> >> > containing the statement "No draw or progressive..." I need to know
    >> >> > how
    >> >> > to
    >> >> > get a wild card to work after the word "molds". With the statement
    >> >> > above,
    >> >> > it
    >> >> > counts just that and nothing else. I can get the wild card to work
    >> >> > in
    >> >> > any
    >> >> > other formula.
    >> >>
    >> >>
    >> >>

    >>
    >>
    >>




  9. #9
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    OOPS, I spoke too soon. It's still not counting every instance of what I need
    to count.

    Hopeit

    "Biff" wrote:

    > Hi!
    >
    > Try this:
    >
    > Normally entered
    >
    > =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    > or progressive, plastic injection
    > molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a spread sheet that has several columns. I have created a nested
    > >array
    > > formula to tell me how many items fall into my criteria, but I am missing
    > > some information, see fomula below:
    > >
    > >
    > > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > > draw or progressive, plastic injection
    > > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >
    > > My problem is that I may or may not add information into the column
    > > containing the statement "No draw or progressive..." I need to know how to
    > > get a wild card to work after the word "molds". With the statement above,
    > > it
    > > counts just that and nothing else. I can get the wild card to work in any
    > > other formula.

    >
    >
    >


  10. #10
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    Thanks Biff! Thak seems to have takenm care of my issue and all seems to be
    working with my quick test. If I have problems when I get the formula in
    place, I'll let you know.

    Hopeit

    "Biff" wrote:

    > Hi!
    >
    > Try this:
    >
    > Normally entered
    >
    > =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    > or progressive, plastic injection
    > molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a spread sheet that has several columns. I have created a nested
    > >array
    > > formula to tell me how many items fall into my criteria, but I am missing
    > > some information, see fomula below:
    > >
    > >
    > > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > > draw or progressive, plastic injection
    > > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >
    > > My problem is that I may or may not add information into the column
    > > containing the statement "No draw or progressive..." I need to know how to
    > > get a wild card to work after the word "molds". With the statement above,
    > > it
    > > counts just that and nothing else. I can get the wild card to work in any
    > > other formula.

    >
    >
    >


  11. #11
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Care to elaborate?

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > OOPS, I spoke too soon. It's still not counting every instance of what I
    > need
    > to count.
    >
    > Hopeit
    >
    > "Biff" wrote:
    >
    >> Hi!
    >>
    >> Try this:
    >>
    >> Normally entered
    >>
    >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    >> draw
    >> or progressive, plastic injection
    >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >>
    >> Biff
    >>
    >> "hopeit" <[email protected]> wrote in message
    >> news:[email protected]...
    >> >I have a spread sheet that has several columns. I have created a nested
    >> >array
    >> > formula to tell me how many items fall into my criteria, but I am
    >> > missing
    >> > some information, see fomula below:
    >> >
    >> >
    >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    >> > draw or progressive, plastic injection
    >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    >> >
    >> > My problem is that I may or may not add information into the column
    >> > containing the statement "No draw or progressive..." I need to know how
    >> > to
    >> > get a wild card to work after the word "molds". With the statement
    >> > above,
    >> > it
    >> > counts just that and nothing else. I can get the wild card to work in
    >> > any
    >> > other formula.

    >>
    >>
    >>




  12. #12
    Bob Phillips
    Guest

    Re: How do I use wild cards in nested array formulas?

    =COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*(ISNUMBER(FIND("No draw or
    progressive, plastic injection
    molds",'NON-APPLICABLE'!P3:P2113))),'NON-APPLICABLE'!E3:E2113))

    still an array formula

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > I have a spread sheet that has several columns. I have created a nested

    array
    > formula to tell me how many items fall into my criteria, but I am missing
    > some information, see fomula below:
    >
    >
    >

    {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > draw or progressive, plastic injection

    molds"),'NON-APPLICABLE'!E3:E2113))}
    >
    > My problem is that I may or may not add information into the column
    > containing the statement "No draw or progressive..." I need to know how to
    > get a wild card to work after the word "molds". With the statement above,

    it
    > counts just that and nothing else. I can get the wild card to work in any
    > other formula.




  13. #13
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    It will only count the items that have the phrase:

    "No draw or progressive, plastic injection molds"

    If I want to add a comment to the line, such as:

    ", referred Tom Jones",

    it will not count that.

    I need to know if the use of wild cards is allowed within a nested array
    formula. So far I can not get that to work.

    Thanks,
    Hopeit

    "Biff" wrote:

    > Care to elaborate?
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > > OOPS, I spoke too soon. It's still not counting every instance of what I
    > > need
    > > to count.
    > >
    > > Hopeit
    > >
    > > "Biff" wrote:
    > >
    > >> Hi!
    > >>
    > >> Try this:
    > >>
    > >> Normally entered
    > >>
    > >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    > >> draw
    > >> or progressive, plastic injection
    > >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    > >>
    > >> Biff
    > >>
    > >> "hopeit" <[email protected]> wrote in message
    > >> news:[email protected]...
    > >> >I have a spread sheet that has several columns. I have created a nested
    > >> >array
    > >> > formula to tell me how many items fall into my criteria, but I am
    > >> > missing
    > >> > some information, see fomula below:
    > >> >
    > >> >
    > >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > >> > draw or progressive, plastic injection
    > >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >> >
    > >> > My problem is that I may or may not add information into the column
    > >> > containing the statement "No draw or progressive..." I need to know how
    > >> > to
    > >> > get a wild card to work after the word "molds". With the statement
    > >> > above,
    > >> > it
    > >> > counts just that and nothing else. I can get the wild card to work in
    > >> > any
    > >> > other formula.
    > >>
    > >>
    > >>

    >
    >
    >


  14. #14
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Hi!

    Try this:

    Normally entered

    =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    or progressive, plastic injection
    molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    >I have a spread sheet that has several columns. I have created a nested
    >array
    > formula to tell me how many items fall into my criteria, but I am missing
    > some information, see fomula below:
    >
    >
    > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > draw or progressive, plastic injection
    > molds"),'NON-APPLICABLE'!E3:E2113))}
    >
    > My problem is that I may or may not add information into the column
    > containing the statement "No draw or progressive..." I need to know how to
    > get a wild card to work after the word "molds". With the statement above,
    > it
    > counts just that and nothing else. I can get the wild card to work in any
    > other formula.




  15. #15
    Bob Phillips
    Guest

    Re: How do I use wild cards in nested array formulas?

    =COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*(ISNUMBER(FIND("No draw or
    progressive, plastic injection
    molds",'NON-APPLICABLE'!P3:P2113))),'NON-APPLICABLE'!E3:E2113))

    still an array formula

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > I have a spread sheet that has several columns. I have created a nested

    array
    > formula to tell me how many items fall into my criteria, but I am missing
    > some information, see fomula below:
    >
    >
    >

    {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > draw or progressive, plastic injection

    molds"),'NON-APPLICABLE'!E3:E2113))}
    >
    > My problem is that I may or may not add information into the column
    > containing the statement "No draw or progressive..." I need to know how to
    > get a wild card to work after the word "molds". With the statement above,

    it
    > counts just that and nothing else. I can get the wild card to work in any
    > other formula.




  16. #16
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Hi!

    Try this:

    Normally entered

    =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    or progressive, plastic injection
    molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    >I have a spread sheet that has several columns. I have created a nested
    >array
    > formula to tell me how many items fall into my criteria, but I am missing
    > some information, see fomula below:
    >
    >
    > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > draw or progressive, plastic injection
    > molds"),'NON-APPLICABLE'!E3:E2113))}
    >
    > My problem is that I may or may not add information into the column
    > containing the statement "No draw or progressive..." I need to know how to
    > get a wild card to work after the word "molds". With the statement above,
    > it
    > counts just that and nothing else. I can get the wild card to work in any
    > other formula.




  17. #17
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Hi!

    If you have in cells:

    A1 = There is no draw or progressive, plastic injection molds

    A2 = No draw or progressive, plastic injection molds, referred Tom Jones

    A3 = There is no draw or progressive, plastic injection molds, referred Tom
    Jones

    The suggested formula WILL count all 3 of those cells. (provided the other
    criteria in the formula are met).

    If the formula is not counting those cells some other criteria may not be
    being met.

    > I need to know if the use of wild cards is allowed within a nested array


    No. Not in the type of formula you need.

    Want me to take a look at your file?

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > It will only count the items that have the phrase:
    >
    > "No draw or progressive, plastic injection molds"
    >
    > If I want to add a comment to the line, such as:
    >
    > ", referred Tom Jones",
    >
    > it will not count that.
    >
    > I need to know if the use of wild cards is allowed within a nested array
    > formula. So far I can not get that to work.
    >
    > Thanks,
    > Hopeit
    >
    > "Biff" wrote:
    >
    >> Care to elaborate?
    >>
    >> Biff
    >>
    >> "hopeit" <[email protected]> wrote in message
    >> news:[email protected]...
    >> > OOPS, I spoke too soon. It's still not counting every instance of what
    >> > I
    >> > need
    >> > to count.
    >> >
    >> > Hopeit
    >> >
    >> > "Biff" wrote:
    >> >
    >> >> Hi!
    >> >>
    >> >> Try this:
    >> >>
    >> >> Normally entered
    >> >>
    >> >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    >> >> draw
    >> >> or progressive, plastic injection
    >> >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >> >>
    >> >> Biff
    >> >>
    >> >> "hopeit" <[email protected]> wrote in message
    >> >> news:[email protected]...
    >> >> >I have a spread sheet that has several columns. I have created a
    >> >> >nested
    >> >> >array
    >> >> > formula to tell me how many items fall into my criteria, but I am
    >> >> > missing
    >> >> > some information, see fomula below:
    >> >> >
    >> >> >
    >> >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    >> >> > draw or progressive, plastic injection
    >> >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    >> >> >
    >> >> > My problem is that I may or may not add information into the column
    >> >> > containing the statement "No draw or progressive..." I need to know
    >> >> > how
    >> >> > to
    >> >> > get a wild card to work after the word "molds". With the statement
    >> >> > above,
    >> >> > it
    >> >> > counts just that and nothing else. I can get the wild card to work
    >> >> > in
    >> >> > any
    >> >> > other formula.
    >> >>
    >> >>
    >> >>

    >>
    >>
    >>




  18. #18
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    Thanks Biff! Thak seems to have takenm care of my issue and all seems to be
    working with my quick test. If I have problems when I get the formula in
    place, I'll let you know.

    Hopeit

    "Biff" wrote:

    > Hi!
    >
    > Try this:
    >
    > Normally entered
    >
    > =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    > or progressive, plastic injection
    > molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a spread sheet that has several columns. I have created a nested
    > >array
    > > formula to tell me how many items fall into my criteria, but I am missing
    > > some information, see fomula below:
    > >
    > >
    > > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > > draw or progressive, plastic injection
    > > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >
    > > My problem is that I may or may not add information into the column
    > > containing the statement "No draw or progressive..." I need to know how to
    > > get a wild card to work after the word "molds". With the statement above,
    > > it
    > > counts just that and nothing else. I can get the wild card to work in any
    > > other formula.

    >
    >
    >


  19. #19
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    It will only count the items that have the phrase:

    "No draw or progressive, plastic injection molds"

    If I want to add a comment to the line, such as:

    ", referred Tom Jones",

    it will not count that.

    I need to know if the use of wild cards is allowed within a nested array
    formula. So far I can not get that to work.

    Thanks,
    Hopeit

    "Biff" wrote:

    > Care to elaborate?
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > > OOPS, I spoke too soon. It's still not counting every instance of what I
    > > need
    > > to count.
    > >
    > > Hopeit
    > >
    > > "Biff" wrote:
    > >
    > >> Hi!
    > >>
    > >> Try this:
    > >>
    > >> Normally entered
    > >>
    > >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    > >> draw
    > >> or progressive, plastic injection
    > >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    > >>
    > >> Biff
    > >>
    > >> "hopeit" <[email protected]> wrote in message
    > >> news:[email protected]...
    > >> >I have a spread sheet that has several columns. I have created a nested
    > >> >array
    > >> > formula to tell me how many items fall into my criteria, but I am
    > >> > missing
    > >> > some information, see fomula below:
    > >> >
    > >> >
    > >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > >> > draw or progressive, plastic injection
    > >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >> >
    > >> > My problem is that I may or may not add information into the column
    > >> > containing the statement "No draw or progressive..." I need to know how
    > >> > to
    > >> > get a wild card to work after the word "molds". With the statement
    > >> > above,
    > >> > it
    > >> > counts just that and nothing else. I can get the wild card to work in
    > >> > any
    > >> > other formula.
    > >>
    > >>
    > >>

    >
    >
    >


  20. #20
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Care to elaborate?

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > OOPS, I spoke too soon. It's still not counting every instance of what I
    > need
    > to count.
    >
    > Hopeit
    >
    > "Biff" wrote:
    >
    >> Hi!
    >>
    >> Try this:
    >>
    >> Normally entered
    >>
    >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    >> draw
    >> or progressive, plastic injection
    >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >>
    >> Biff
    >>
    >> "hopeit" <[email protected]> wrote in message
    >> news:[email protected]...
    >> >I have a spread sheet that has several columns. I have created a nested
    >> >array
    >> > formula to tell me how many items fall into my criteria, but I am
    >> > missing
    >> > some information, see fomula below:
    >> >
    >> >
    >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    >> > draw or progressive, plastic injection
    >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    >> >
    >> > My problem is that I may or may not add information into the column
    >> > containing the statement "No draw or progressive..." I need to know how
    >> > to
    >> > get a wild card to work after the word "molds". With the statement
    >> > above,
    >> > it
    >> > counts just that and nothing else. I can get the wild card to work in
    >> > any
    >> > other formula.

    >>
    >>
    >>




  21. #21
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    OOPS, I spoke too soon. It's still not counting every instance of what I need
    to count.

    Hopeit

    "Biff" wrote:

    > Hi!
    >
    > Try this:
    >
    > Normally entered
    >
    > =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    > or progressive, plastic injection
    > molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a spread sheet that has several columns. I have created a nested
    > >array
    > > formula to tell me how many items fall into my criteria, but I am missing
    > > some information, see fomula below:
    > >
    > >
    > > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > > draw or progressive, plastic injection
    > > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >
    > > My problem is that I may or may not add information into the column
    > > containing the statement "No draw or progressive..." I need to know how to
    > > get a wild card to work after the word "molds". With the statement above,
    > > it
    > > counts just that and nothing else. I can get the wild card to work in any
    > > other formula.

    >
    >
    >


  22. #22
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    OOPS, I spoke too soon. It's still not counting every instance of what I need
    to count.

    Hopeit

    "Biff" wrote:

    > Hi!
    >
    > Try this:
    >
    > Normally entered
    >
    > =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    > or progressive, plastic injection
    > molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a spread sheet that has several columns. I have created a nested
    > >array
    > > formula to tell me how many items fall into my criteria, but I am missing
    > > some information, see fomula below:
    > >
    > >
    > > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > > draw or progressive, plastic injection
    > > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >
    > > My problem is that I may or may not add information into the column
    > > containing the statement "No draw or progressive..." I need to know how to
    > > get a wild card to work after the word "molds". With the statement above,
    > > it
    > > counts just that and nothing else. I can get the wild card to work in any
    > > other formula.

    >
    >
    >


  23. #23
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Hi!

    If you have in cells:

    A1 = There is no draw or progressive, plastic injection molds

    A2 = No draw or progressive, plastic injection molds, referred Tom Jones

    A3 = There is no draw or progressive, plastic injection molds, referred Tom
    Jones

    The suggested formula WILL count all 3 of those cells. (provided the other
    criteria in the formula are met).

    If the formula is not counting those cells some other criteria may not be
    being met.

    > I need to know if the use of wild cards is allowed within a nested array


    No. Not in the type of formula you need.

    Want me to take a look at your file?

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > It will only count the items that have the phrase:
    >
    > "No draw or progressive, plastic injection molds"
    >
    > If I want to add a comment to the line, such as:
    >
    > ", referred Tom Jones",
    >
    > it will not count that.
    >
    > I need to know if the use of wild cards is allowed within a nested array
    > formula. So far I can not get that to work.
    >
    > Thanks,
    > Hopeit
    >
    > "Biff" wrote:
    >
    >> Care to elaborate?
    >>
    >> Biff
    >>
    >> "hopeit" <[email protected]> wrote in message
    >> news:[email protected]...
    >> > OOPS, I spoke too soon. It's still not counting every instance of what
    >> > I
    >> > need
    >> > to count.
    >> >
    >> > Hopeit
    >> >
    >> > "Biff" wrote:
    >> >
    >> >> Hi!
    >> >>
    >> >> Try this:
    >> >>
    >> >> Normally entered
    >> >>
    >> >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    >> >> draw
    >> >> or progressive, plastic injection
    >> >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >> >>
    >> >> Biff
    >> >>
    >> >> "hopeit" <[email protected]> wrote in message
    >> >> news:[email protected]...
    >> >> >I have a spread sheet that has several columns. I have created a
    >> >> >nested
    >> >> >array
    >> >> > formula to tell me how many items fall into my criteria, but I am
    >> >> > missing
    >> >> > some information, see fomula below:
    >> >> >
    >> >> >
    >> >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    >> >> > draw or progressive, plastic injection
    >> >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    >> >> >
    >> >> > My problem is that I may or may not add information into the column
    >> >> > containing the statement "No draw or progressive..." I need to know
    >> >> > how
    >> >> > to
    >> >> > get a wild card to work after the word "molds". With the statement
    >> >> > above,
    >> >> > it
    >> >> > counts just that and nothing else. I can get the wild card to work
    >> >> > in
    >> >> > any
    >> >> > other formula.
    >> >>
    >> >>
    >> >>

    >>
    >>
    >>




  24. #24
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    Thanks Biff! Thak seems to have takenm care of my issue and all seems to be
    working with my quick test. If I have problems when I get the formula in
    place, I'll let you know.

    Hopeit

    "Biff" wrote:

    > Hi!
    >
    > Try this:
    >
    > Normally entered
    >
    > =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    > or progressive, plastic injection
    > molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a spread sheet that has several columns. I have created a nested
    > >array
    > > formula to tell me how many items fall into my criteria, but I am missing
    > > some information, see fomula below:
    > >
    > >
    > > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > > draw or progressive, plastic injection
    > > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >
    > > My problem is that I may or may not add information into the column
    > > containing the statement "No draw or progressive..." I need to know how to
    > > get a wild card to work after the word "molds". With the statement above,
    > > it
    > > counts just that and nothing else. I can get the wild card to work in any
    > > other formula.

    >
    >
    >


  25. #25
    Bob Phillips
    Guest

    Re: How do I use wild cards in nested array formulas?

    =COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*(ISNUMBER(FIND("No draw or
    progressive, plastic injection
    molds",'NON-APPLICABLE'!P3:P2113))),'NON-APPLICABLE'!E3:E2113))

    still an array formula

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > I have a spread sheet that has several columns. I have created a nested

    array
    > formula to tell me how many items fall into my criteria, but I am missing
    > some information, see fomula below:
    >
    >
    >

    {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > draw or progressive, plastic injection

    molds"),'NON-APPLICABLE'!E3:E2113))}
    >
    > My problem is that I may or may not add information into the column
    > containing the statement "No draw or progressive..." I need to know how to
    > get a wild card to work after the word "molds". With the statement above,

    it
    > counts just that and nothing else. I can get the wild card to work in any
    > other formula.




  26. #26
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Care to elaborate?

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > OOPS, I spoke too soon. It's still not counting every instance of what I
    > need
    > to count.
    >
    > Hopeit
    >
    > "Biff" wrote:
    >
    >> Hi!
    >>
    >> Try this:
    >>
    >> Normally entered
    >>
    >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    >> draw
    >> or progressive, plastic injection
    >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >>
    >> Biff
    >>
    >> "hopeit" <[email protected]> wrote in message
    >> news:[email protected]...
    >> >I have a spread sheet that has several columns. I have created a nested
    >> >array
    >> > formula to tell me how many items fall into my criteria, but I am
    >> > missing
    >> > some information, see fomula below:
    >> >
    >> >
    >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    >> > draw or progressive, plastic injection
    >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    >> >
    >> > My problem is that I may or may not add information into the column
    >> > containing the statement "No draw or progressive..." I need to know how
    >> > to
    >> > get a wild card to work after the word "molds". With the statement
    >> > above,
    >> > it
    >> > counts just that and nothing else. I can get the wild card to work in
    >> > any
    >> > other formula.

    >>
    >>
    >>




  27. #27
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Hi!

    Try this:

    Normally entered

    =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    or progressive, plastic injection
    molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    >I have a spread sheet that has several columns. I have created a nested
    >array
    > formula to tell me how many items fall into my criteria, but I am missing
    > some information, see fomula below:
    >
    >
    > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > draw or progressive, plastic injection
    > molds"),'NON-APPLICABLE'!E3:E2113))}
    >
    > My problem is that I may or may not add information into the column
    > containing the statement "No draw or progressive..." I need to know how to
    > get a wild card to work after the word "molds". With the statement above,
    > it
    > counts just that and nothing else. I can get the wild card to work in any
    > other formula.




  28. #28
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    It will only count the items that have the phrase:

    "No draw or progressive, plastic injection molds"

    If I want to add a comment to the line, such as:

    ", referred Tom Jones",

    it will not count that.

    I need to know if the use of wild cards is allowed within a nested array
    formula. So far I can not get that to work.

    Thanks,
    Hopeit

    "Biff" wrote:

    > Care to elaborate?
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > > OOPS, I spoke too soon. It's still not counting every instance of what I
    > > need
    > > to count.
    > >
    > > Hopeit
    > >
    > > "Biff" wrote:
    > >
    > >> Hi!
    > >>
    > >> Try this:
    > >>
    > >> Normally entered
    > >>
    > >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    > >> draw
    > >> or progressive, plastic injection
    > >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    > >>
    > >> Biff
    > >>
    > >> "hopeit" <[email protected]> wrote in message
    > >> news:[email protected]...
    > >> >I have a spread sheet that has several columns. I have created a nested
    > >> >array
    > >> > formula to tell me how many items fall into my criteria, but I am
    > >> > missing
    > >> > some information, see fomula below:
    > >> >
    > >> >
    > >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > >> > draw or progressive, plastic injection
    > >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >> >
    > >> > My problem is that I may or may not add information into the column
    > >> > containing the statement "No draw or progressive..." I need to know how
    > >> > to
    > >> > get a wild card to work after the word "molds". With the statement
    > >> > above,
    > >> > it
    > >> > counts just that and nothing else. I can get the wild card to work in
    > >> > any
    > >> > other formula.
    > >>
    > >>
    > >>

    >
    >
    >


  29. #29
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    It will only count the items that have the phrase:

    "No draw or progressive, plastic injection molds"

    If I want to add a comment to the line, such as:

    ", referred Tom Jones",

    it will not count that.

    I need to know if the use of wild cards is allowed within a nested array
    formula. So far I can not get that to work.

    Thanks,
    Hopeit

    "Biff" wrote:

    > Care to elaborate?
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > > OOPS, I spoke too soon. It's still not counting every instance of what I
    > > need
    > > to count.
    > >
    > > Hopeit
    > >
    > > "Biff" wrote:
    > >
    > >> Hi!
    > >>
    > >> Try this:
    > >>
    > >> Normally entered
    > >>
    > >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    > >> draw
    > >> or progressive, plastic injection
    > >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    > >>
    > >> Biff
    > >>
    > >> "hopeit" <[email protected]> wrote in message
    > >> news:[email protected]...
    > >> >I have a spread sheet that has several columns. I have created a nested
    > >> >array
    > >> > formula to tell me how many items fall into my criteria, but I am
    > >> > missing
    > >> > some information, see fomula below:
    > >> >
    > >> >
    > >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > >> > draw or progressive, plastic injection
    > >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >> >
    > >> > My problem is that I may or may not add information into the column
    > >> > containing the statement "No draw or progressive..." I need to know how
    > >> > to
    > >> > get a wild card to work after the word "molds". With the statement
    > >> > above,
    > >> > it
    > >> > counts just that and nothing else. I can get the wild card to work in
    > >> > any
    > >> > other formula.
    > >>
    > >>
    > >>

    >
    >
    >


  30. #30
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Hi!

    If you have in cells:

    A1 = There is no draw or progressive, plastic injection molds

    A2 = No draw or progressive, plastic injection molds, referred Tom Jones

    A3 = There is no draw or progressive, plastic injection molds, referred Tom
    Jones

    The suggested formula WILL count all 3 of those cells. (provided the other
    criteria in the formula are met).

    If the formula is not counting those cells some other criteria may not be
    being met.

    > I need to know if the use of wild cards is allowed within a nested array


    No. Not in the type of formula you need.

    Want me to take a look at your file?

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > It will only count the items that have the phrase:
    >
    > "No draw or progressive, plastic injection molds"
    >
    > If I want to add a comment to the line, such as:
    >
    > ", referred Tom Jones",
    >
    > it will not count that.
    >
    > I need to know if the use of wild cards is allowed within a nested array
    > formula. So far I can not get that to work.
    >
    > Thanks,
    > Hopeit
    >
    > "Biff" wrote:
    >
    >> Care to elaborate?
    >>
    >> Biff
    >>
    >> "hopeit" <[email protected]> wrote in message
    >> news:[email protected]...
    >> > OOPS, I spoke too soon. It's still not counting every instance of what
    >> > I
    >> > need
    >> > to count.
    >> >
    >> > Hopeit
    >> >
    >> > "Biff" wrote:
    >> >
    >> >> Hi!
    >> >>
    >> >> Try this:
    >> >>
    >> >> Normally entered
    >> >>
    >> >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    >> >> draw
    >> >> or progressive, plastic injection
    >> >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >> >>
    >> >> Biff
    >> >>
    >> >> "hopeit" <[email protected]> wrote in message
    >> >> news:[email protected]...
    >> >> >I have a spread sheet that has several columns. I have created a
    >> >> >nested
    >> >> >array
    >> >> > formula to tell me how many items fall into my criteria, but I am
    >> >> > missing
    >> >> > some information, see fomula below:
    >> >> >
    >> >> >
    >> >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    >> >> > draw or progressive, plastic injection
    >> >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    >> >> >
    >> >> > My problem is that I may or may not add information into the column
    >> >> > containing the statement "No draw or progressive..." I need to know
    >> >> > how
    >> >> > to
    >> >> > get a wild card to work after the word "molds". With the statement
    >> >> > above,
    >> >> > it
    >> >> > counts just that and nothing else. I can get the wild card to work
    >> >> > in
    >> >> > any
    >> >> > other formula.
    >> >>
    >> >>
    >> >>

    >>
    >>
    >>




  31. #31
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Hi!

    Try this:

    Normally entered

    =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    or progressive, plastic injection
    molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    >I have a spread sheet that has several columns. I have created a nested
    >array
    > formula to tell me how many items fall into my criteria, but I am missing
    > some information, see fomula below:
    >
    >
    > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > draw or progressive, plastic injection
    > molds"),'NON-APPLICABLE'!E3:E2113))}
    >
    > My problem is that I may or may not add information into the column
    > containing the statement "No draw or progressive..." I need to know how to
    > get a wild card to work after the word "molds". With the statement above,
    > it
    > counts just that and nothing else. I can get the wild card to work in any
    > other formula.




  32. #32
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    Thanks Biff! Thak seems to have takenm care of my issue and all seems to be
    working with my quick test. If I have problems when I get the formula in
    place, I'll let you know.

    Hopeit

    "Biff" wrote:

    > Hi!
    >
    > Try this:
    >
    > Normally entered
    >
    > =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    > or progressive, plastic injection
    > molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a spread sheet that has several columns. I have created a nested
    > >array
    > > formula to tell me how many items fall into my criteria, but I am missing
    > > some information, see fomula below:
    > >
    > >
    > > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > > draw or progressive, plastic injection
    > > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >
    > > My problem is that I may or may not add information into the column
    > > containing the statement "No draw or progressive..." I need to know how to
    > > get a wild card to work after the word "molds". With the statement above,
    > > it
    > > counts just that and nothing else. I can get the wild card to work in any
    > > other formula.

    >
    >
    >


  33. #33
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Care to elaborate?

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > OOPS, I spoke too soon. It's still not counting every instance of what I
    > need
    > to count.
    >
    > Hopeit
    >
    > "Biff" wrote:
    >
    >> Hi!
    >>
    >> Try this:
    >>
    >> Normally entered
    >>
    >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    >> draw
    >> or progressive, plastic injection
    >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >>
    >> Biff
    >>
    >> "hopeit" <[email protected]> wrote in message
    >> news:[email protected]...
    >> >I have a spread sheet that has several columns. I have created a nested
    >> >array
    >> > formula to tell me how many items fall into my criteria, but I am
    >> > missing
    >> > some information, see fomula below:
    >> >
    >> >
    >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    >> > draw or progressive, plastic injection
    >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    >> >
    >> > My problem is that I may or may not add information into the column
    >> > containing the statement "No draw or progressive..." I need to know how
    >> > to
    >> > get a wild card to work after the word "molds". With the statement
    >> > above,
    >> > it
    >> > counts just that and nothing else. I can get the wild card to work in
    >> > any
    >> > other formula.

    >>
    >>
    >>




  34. #34
    Bob Phillips
    Guest

    Re: How do I use wild cards in nested array formulas?

    =COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*(ISNUMBER(FIND("No draw or
    progressive, plastic injection
    molds",'NON-APPLICABLE'!P3:P2113))),'NON-APPLICABLE'!E3:E2113))

    still an array formula

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > I have a spread sheet that has several columns. I have created a nested

    array
    > formula to tell me how many items fall into my criteria, but I am missing
    > some information, see fomula below:
    >
    >
    >

    {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > draw or progressive, plastic injection

    molds"),'NON-APPLICABLE'!E3:E2113))}
    >
    > My problem is that I may or may not add information into the column
    > containing the statement "No draw or progressive..." I need to know how to
    > get a wild card to work after the word "molds". With the statement above,

    it
    > counts just that and nothing else. I can get the wild card to work in any
    > other formula.




  35. #35
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    OOPS, I spoke too soon. It's still not counting every instance of what I need
    to count.

    Hopeit

    "Biff" wrote:

    > Hi!
    >
    > Try this:
    >
    > Normally entered
    >
    > =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    > or progressive, plastic injection
    > molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a spread sheet that has several columns. I have created a nested
    > >array
    > > formula to tell me how many items fall into my criteria, but I am missing
    > > some information, see fomula below:
    > >
    > >
    > > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > > draw or progressive, plastic injection
    > > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >
    > > My problem is that I may or may not add information into the column
    > > containing the statement "No draw or progressive..." I need to know how to
    > > get a wild card to work after the word "molds". With the statement above,
    > > it
    > > counts just that and nothing else. I can get the wild card to work in any
    > > other formula.

    >
    >
    >


  36. #36
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Care to elaborate?

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > OOPS, I spoke too soon. It's still not counting every instance of what I
    > need
    > to count.
    >
    > Hopeit
    >
    > "Biff" wrote:
    >
    >> Hi!
    >>
    >> Try this:
    >>
    >> Normally entered
    >>
    >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    >> draw
    >> or progressive, plastic injection
    >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >>
    >> Biff
    >>
    >> "hopeit" <[email protected]> wrote in message
    >> news:[email protected]...
    >> >I have a spread sheet that has several columns. I have created a nested
    >> >array
    >> > formula to tell me how many items fall into my criteria, but I am
    >> > missing
    >> > some information, see fomula below:
    >> >
    >> >
    >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    >> > draw or progressive, plastic injection
    >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    >> >
    >> > My problem is that I may or may not add information into the column
    >> > containing the statement "No draw or progressive..." I need to know how
    >> > to
    >> > get a wild card to work after the word "molds". With the statement
    >> > above,
    >> > it
    >> > counts just that and nothing else. I can get the wild card to work in
    >> > any
    >> > other formula.

    >>
    >>
    >>




  37. #37
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Hi!

    If you have in cells:

    A1 = There is no draw or progressive, plastic injection molds

    A2 = No draw or progressive, plastic injection molds, referred Tom Jones

    A3 = There is no draw or progressive, plastic injection molds, referred Tom
    Jones

    The suggested formula WILL count all 3 of those cells. (provided the other
    criteria in the formula are met).

    If the formula is not counting those cells some other criteria may not be
    being met.

    > I need to know if the use of wild cards is allowed within a nested array


    No. Not in the type of formula you need.

    Want me to take a look at your file?

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > It will only count the items that have the phrase:
    >
    > "No draw or progressive, plastic injection molds"
    >
    > If I want to add a comment to the line, such as:
    >
    > ", referred Tom Jones",
    >
    > it will not count that.
    >
    > I need to know if the use of wild cards is allowed within a nested array
    > formula. So far I can not get that to work.
    >
    > Thanks,
    > Hopeit
    >
    > "Biff" wrote:
    >
    >> Care to elaborate?
    >>
    >> Biff
    >>
    >> "hopeit" <[email protected]> wrote in message
    >> news:[email protected]...
    >> > OOPS, I spoke too soon. It's still not counting every instance of what
    >> > I
    >> > need
    >> > to count.
    >> >
    >> > Hopeit
    >> >
    >> > "Biff" wrote:
    >> >
    >> >> Hi!
    >> >>
    >> >> Try this:
    >> >>
    >> >> Normally entered
    >> >>
    >> >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    >> >> draw
    >> >> or progressive, plastic injection
    >> >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >> >>
    >> >> Biff
    >> >>
    >> >> "hopeit" <[email protected]> wrote in message
    >> >> news:[email protected]...
    >> >> >I have a spread sheet that has several columns. I have created a
    >> >> >nested
    >> >> >array
    >> >> > formula to tell me how many items fall into my criteria, but I am
    >> >> > missing
    >> >> > some information, see fomula below:
    >> >> >
    >> >> >
    >> >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    >> >> > draw or progressive, plastic injection
    >> >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    >> >> >
    >> >> > My problem is that I may or may not add information into the column
    >> >> > containing the statement "No draw or progressive..." I need to know
    >> >> > how
    >> >> > to
    >> >> > get a wild card to work after the word "molds". With the statement
    >> >> > above,
    >> >> > it
    >> >> > counts just that and nothing else. I can get the wild card to work
    >> >> > in
    >> >> > any
    >> >> > other formula.
    >> >>
    >> >>
    >> >>

    >>
    >>
    >>




  38. #38
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    It will only count the items that have the phrase:

    "No draw or progressive, plastic injection molds"

    If I want to add a comment to the line, such as:

    ", referred Tom Jones",

    it will not count that.

    I need to know if the use of wild cards is allowed within a nested array
    formula. So far I can not get that to work.

    Thanks,
    Hopeit

    "Biff" wrote:

    > Care to elaborate?
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > > OOPS, I spoke too soon. It's still not counting every instance of what I
    > > need
    > > to count.
    > >
    > > Hopeit
    > >
    > > "Biff" wrote:
    > >
    > >> Hi!
    > >>
    > >> Try this:
    > >>
    > >> Normally entered
    > >>
    > >> =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No
    > >> draw
    > >> or progressive, plastic injection
    > >> molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    > >>
    > >> Biff
    > >>
    > >> "hopeit" <[email protected]> wrote in message
    > >> news:[email protected]...
    > >> >I have a spread sheet that has several columns. I have created a nested
    > >> >array
    > >> > formula to tell me how many items fall into my criteria, but I am
    > >> > missing
    > >> > some information, see fomula below:
    > >> >
    > >> >
    > >> > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > >> > draw or progressive, plastic injection
    > >> > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >> >
    > >> > My problem is that I may or may not add information into the column
    > >> > containing the statement "No draw or progressive..." I need to know how
    > >> > to
    > >> > get a wild card to work after the word "molds". With the statement
    > >> > above,
    > >> > it
    > >> > counts just that and nothing else. I can get the wild card to work in
    > >> > any
    > >> > other formula.
    > >>
    > >>
    > >>

    >
    >
    >


  39. #39
    hopeit
    Guest

    How do I use wild cards in nested array formulas?

    I have a spread sheet that has several columns. I have created a nested array
    formula to tell me how many items fall into my criteria, but I am missing
    some information, see fomula below:


    {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    draw or progressive, plastic injection molds"),'NON-APPLICABLE'!E3:E2113))}

    My problem is that I may or may not add information into the column
    containing the statement "No draw or progressive..." I need to know how to
    get a wild card to work after the word "molds". With the statement above, it
    counts just that and nothing else. I can get the wild card to work in any
    other formula.

  40. #40
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    OOPS, I spoke too soon. It's still not counting every instance of what I need
    to count.

    Hopeit

    "Biff" wrote:

    > Hi!
    >
    > Try this:
    >
    > Normally entered
    >
    > =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    > or progressive, plastic injection
    > molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a spread sheet that has several columns. I have created a nested
    > >array
    > > formula to tell me how many items fall into my criteria, but I am missing
    > > some information, see fomula below:
    > >
    > >
    > > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > > draw or progressive, plastic injection
    > > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >
    > > My problem is that I may or may not add information into the column
    > > containing the statement "No draw or progressive..." I need to know how to
    > > get a wild card to work after the word "molds". With the statement above,
    > > it
    > > counts just that and nothing else. I can get the wild card to work in any
    > > other formula.

    >
    >
    >


  41. #41
    hopeit
    Guest

    Re: How do I use wild cards in nested array formulas?

    Thanks Biff! Thak seems to have takenm care of my issue and all seems to be
    working with my quick test. If I have problems when I get the formula in
    place, I'll let you know.

    Hopeit

    "Biff" wrote:

    > Hi!
    >
    > Try this:
    >
    > Normally entered
    >
    > =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    > or progressive, plastic injection
    > molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))
    >
    > Biff
    >
    > "hopeit" <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a spread sheet that has several columns. I have created a nested
    > >array
    > > formula to tell me how many items fall into my criteria, but I am missing
    > > some information, see fomula below:
    > >
    > >
    > > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > > draw or progressive, plastic injection
    > > molds"),'NON-APPLICABLE'!E3:E2113))}
    > >
    > > My problem is that I may or may not add information into the column
    > > containing the statement "No draw or progressive..." I need to know how to
    > > get a wild card to work after the word "molds". With the statement above,
    > > it
    > > counts just that and nothing else. I can get the wild card to work in any
    > > other formula.

    >
    >
    >


  42. #42
    Bob Phillips
    Guest

    Re: How do I use wild cards in nested array formulas?

    =COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*(ISNUMBER(FIND("No draw or
    progressive, plastic injection
    molds",'NON-APPLICABLE'!P3:P2113))),'NON-APPLICABLE'!E3:E2113))

    still an array formula

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    > I have a spread sheet that has several columns. I have created a nested

    array
    > formula to tell me how many items fall into my criteria, but I am missing
    > some information, see fomula below:
    >
    >
    >

    {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > draw or progressive, plastic injection

    molds"),'NON-APPLICABLE'!E3:E2113))}
    >
    > My problem is that I may or may not add information into the column
    > containing the statement "No draw or progressive..." I need to know how to
    > get a wild card to work after the word "molds". With the statement above,

    it
    > counts just that and nothing else. I can get the wild card to work in any
    > other formula.




  43. #43
    Biff
    Guest

    Re: How do I use wild cards in nested array formulas?

    Hi!

    Try this:

    Normally entered

    =SUMPRODUCT(--('NON-APPLICABLE'!I3:I2113="MI"),--(ISNUMBER(SEARCH("No draw
    or progressive, plastic injection
    molds",'NON-APPLICABLE'!AP3:AP2113))),--(ISNUMBER('NON-APPLICABLE'!E3:E2113)))

    Biff

    "hopeit" <[email protected]> wrote in message
    news:[email protected]...
    >I have a spread sheet that has several columns. I have created a nested
    >array
    > formula to tell me how many items fall into my criteria, but I am missing
    > some information, see fomula below:
    >
    >
    > {=COUNT(IF(('NON-APPLICABLE'!I3:I2113="MI")*('NON-APPLICABLE'!AP3:AP2113="No
    > draw or progressive, plastic injection
    > molds"),'NON-APPLICABLE'!E3:E2113))}
    >
    > My problem is that I may or may not add information into the column
    > containing the statement "No draw or progressive..." I need to know how to
    > get a wild card to work after the word "molds". With the statement above,
    > it
    > counts just that and nothing else. I can get the wild card to work in any
    > other formula.




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1