+ Reply to Thread
Results 1 to 6 of 6

user checklist formula needed XP

  1. #1
    Newbie Bob
    Guest

    user checklist formula needed XP

    I have a task list of things that need to be done on RMA's.
    what I want to do is have a cell where the user inputs a model number or
    description (perhaps 6 choices), then the cells that don't apply to that part
    number would display an N/A

    =IF(SEARCH("SS", C6, 1)>0, "N/A", " ") works only for words containing ss,
    anything else creates an error.

    =IF(C6="SS", "N/A", " ") works only if the input is ss

    Any help would be greatly appreciated.

    Thanks.

  2. #2
    Zack Barresse
    Guest

    Re: user checklist formula needed XP

    Well, you could always nest AND statements ...

    =IF(AND(ISERR(FIND("a",A1,1)),ISERR(FIND("b",A1,1)),ISERR(FIND("c",A1,1)),ISERR(FIND("d",A1,1)),ISERR(FIND("e",A1,1)),ISERR(FIND("f",A1,1))),"Not
    Found","OK")

    HTH

    --
    Regards,
    Zack Barresse, aka firefytr, (GT = TFS FF Zack)
    To email, remove the NO SPAM. Please keep correspondence to the board, as
    to benefit others.




    "Newbie Bob" <[email protected]> wrote in message
    news:[email protected]...
    >I have a task list of things that need to be done on RMA's.
    > what I want to do is have a cell where the user inputs a model number or
    > description (perhaps 6 choices), then the cells that don't apply to that
    > part
    > number would display an N/A
    >
    > =IF(SEARCH("SS", C6, 1)>0, "N/A", " ") works only for words containing
    > ss,
    > anything else creates an error.
    >
    > =IF(C6="SS", "N/A", " ") works only if the input is ss
    >
    > Any help would be greatly appreciated.
    >
    > Thanks.




  3. #3
    Bob Phillips
    Guest

    Re: user checklist formula needed XP

    or a SUMPRODUCT

    =IF(SUMPRODUCT(--(ISNUMBER(FIND({"a","b","c","d","e","f"},C6))))>0, "N/A", "
    ")

    --

    HTH

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


    "Zack Barresse" <[email protected]> wrote in message
    news:[email protected]...
    > Well, you could always nest AND statements ...
    >
    >

    =IF(AND(ISERR(FIND("a",A1,1)),ISERR(FIND("b",A1,1)),ISERR(FIND("c",A1,1)),IS
    ERR(FIND("d",A1,1)),ISERR(FIND("e",A1,1)),ISERR(FIND("f",A1,1))),"Not
    > Found","OK")
    >
    > HTH
    >
    > --
    > Regards,
    > Zack Barresse, aka firefytr, (GT = TFS FF Zack)
    > To email, remove the NO SPAM. Please keep correspondence to the board, as
    > to benefit others.
    >
    >
    >
    >
    > "Newbie Bob" <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a task list of things that need to be done on RMA's.
    > > what I want to do is have a cell where the user inputs a model number or
    > > description (perhaps 6 choices), then the cells that don't apply to that
    > > part
    > > number would display an N/A
    > >
    > > =IF(SEARCH("SS", C6, 1)>0, "N/A", " ") works only for words containing
    > > ss,
    > > anything else creates an error.
    > >
    > > =IF(C6="SS", "N/A", " ") works only if the input is ss
    > >
    > > Any help would be greatly appreciated.
    > >
    > > Thanks.

    >
    >




  4. #4
    Newbie Bob
    Guest

    Re: user checklist formula needed XP

    woohoo!!!!

    Yes!! That was what i needed.

    Here is what i ended up with;

    =IF(AND(ISERR(FIND("SS",C6,1)), ISERR(FIND("RL",C6,1)),
    ISERR(FIND("DMD",C6,1)), ISERR(FIND("DMM",C6,1)), ISERR(FIND("DMS",C6,1)),
    ISERR(FIND("DRS",C6,1))), "", "N/A")

    Thanks a lot!

    "Zack Barresse" wrote:

    > Well, you could always nest AND statements ...
    >
    > =IF(AND(ISERR(FIND("a",A1,1)),ISERR(FIND("b",A1,1)),ISERR(FIND("c",A1,1)),ISERR(FIND("d",A1,1)),ISERR(FIND("e",A1,1)),ISERR(FIND("f",A1,1))),"Not
    > Found","OK")
    >
    > HTH
    >
    > --
    > Regards,
    > Zack Barresse, aka firefytr, (GT = TFS FF Zack)
    > To email, remove the NO SPAM. Please keep correspondence to the board, as
    > to benefit others.
    >
    >
    >
    >
    > "Newbie Bob" <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a task list of things that need to be done on RMA's.
    > > what I want to do is have a cell where the user inputs a model number or
    > > description (perhaps 6 choices), then the cells that don't apply to that
    > > part
    > > number would display an N/A
    > >
    > > =IF(SEARCH("SS", C6, 1)>0, "N/A", " ") works only for words containing
    > > ss,
    > > anything else creates an error.
    > >
    > > =IF(C6="SS", "N/A", " ") works only if the input is ss
    > >
    > > Any help would be greatly appreciated.
    > >
    > > Thanks.

    >
    >
    >


  5. #5
    Newbie Bob
    Guest

    Re: user checklist formula needed XP

    Since my user input was text, this formula didn't work for me, but thanks for
    the efforts!

    "Bob Phillips" wrote:

    > or a SUMPRODUCT
    >
    > =IF(SUMPRODUCT(--(ISNUMBER(FIND({"a","b","c","d","e","f"},C6))))>0, "N/A", "
    > ")
    >
    > --
    >
    > HTH
    >
    > RP
    > (remove nothere from the email address if mailing direct)
    >
    >
    > "Zack Barresse" <[email protected]> wrote in message
    > news:[email protected]...
    > > Well, you could always nest AND statements ...
    > >
    > >

    > =IF(AND(ISERR(FIND("a",A1,1)),ISERR(FIND("b",A1,1)),ISERR(FIND("c",A1,1)),IS
    > ERR(FIND("d",A1,1)),ISERR(FIND("e",A1,1)),ISERR(FIND("f",A1,1))),"Not
    > > Found","OK")
    > >
    > > HTH
    > >
    > > --
    > > Regards,
    > > Zack Barresse, aka firefytr, (GT = TFS FF Zack)
    > > To email, remove the NO SPAM. Please keep correspondence to the board, as
    > > to benefit others.
    > >
    > >
    > >
    > >
    > > "Newbie Bob" <[email protected]> wrote in message
    > > news:[email protected]...
    > > >I have a task list of things that need to be done on RMA's.
    > > > what I want to do is have a cell where the user inputs a model number or
    > > > description (perhaps 6 choices), then the cells that don't apply to that
    > > > part
    > > > number would display an N/A
    > > >
    > > > =IF(SEARCH("SS", C6, 1)>0, "N/A", " ") works only for words containing
    > > > ss,
    > > > anything else creates an error.
    > > >
    > > > =IF(C6="SS", "N/A", " ") works only if the input is ss
    > > >
    > > > Any help would be greatly appreciated.
    > > >
    > > > Thanks.

    > >
    > >

    >
    >
    >


  6. #6
    Bob Phillips
    Guest

    Re: user checklist formula needed XP

    It is meant to, and does work, on text. Using your data in later post, it is

    =IF(SUMPRODUCT(--(ISNUMBER(FIND({"SS","RL","DMD","DMM","DMS","DRS"},C6))))>0
    , "N/A", " ")

    which is far more maintainable than the nested IFs.

    --

    HTH

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


    "Newbie Bob" <[email protected]> wrote in message
    news:[email protected]...
    > Since my user input was text, this formula didn't work for me, but thanks

    for
    > the efforts!
    >
    > "Bob Phillips" wrote:
    >
    > > or a SUMPRODUCT
    > >
    > > =IF(SUMPRODUCT(--(ISNUMBER(FIND({"a","b","c","d","e","f"},C6))))>0,

    "N/A", "
    > > ")
    > >
    > > --
    > >
    > > HTH
    > >
    > > RP
    > > (remove nothere from the email address if mailing direct)
    > >
    > >
    > > "Zack Barresse" <[email protected]> wrote in message
    > > news:[email protected]...
    > > > Well, you could always nest AND statements ...
    > > >
    > > >

    > >

    =IF(AND(ISERR(FIND("a",A1,1)),ISERR(FIND("b",A1,1)),ISERR(FIND("c",A1,1)),IS
    > > ERR(FIND("d",A1,1)),ISERR(FIND("e",A1,1)),ISERR(FIND("f",A1,1))),"Not
    > > > Found","OK")
    > > >
    > > > HTH
    > > >
    > > > --
    > > > Regards,
    > > > Zack Barresse, aka firefytr, (GT = TFS FF Zack)
    > > > To email, remove the NO SPAM. Please keep correspondence to the

    board, as
    > > > to benefit others.
    > > >
    > > >
    > > >
    > > >
    > > > "Newbie Bob" <[email protected]> wrote in message
    > > > news:[email protected]...
    > > > >I have a task list of things that need to be done on RMA's.
    > > > > what I want to do is have a cell where the user inputs a model

    number or
    > > > > description (perhaps 6 choices), then the cells that don't apply to

    that
    > > > > part
    > > > > number would display an N/A
    > > > >
    > > > > =IF(SEARCH("SS", C6, 1)>0, "N/A", " ") works only for words

    containing
    > > > > ss,
    > > > > anything else creates an error.
    > > > >
    > > > > =IF(C6="SS", "N/A", " ") works only if the input is ss
    > > > >
    > > > > Any help would be greatly appreciated.
    > > > >
    > > > > Thanks.
    > > >
    > > >

    > >
    > >
    > >




+ 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