+ Reply to Thread
Results 1 to 3 of 3

Nesting IF statements

  1. #1

    Nesting IF statements

    I have a series of numbers representing sixteen bit binary:

    0010110110001001
    0011111110001001
    0100000100010001
    0100010011010000
    In the next column I have a formula: =IF(BIN2DEC(MID(A1,2,1))=1, "NET",
    "OpID")

    The contents of the third column would depend on the result of this formula
    such that if the second contains "OpID" this one will contain "Private".
    However, if the second column value is "NET" then I need to look at
    BIN2DEC(MID(A1,3,2))) and make the third column value "National" if this
    evaluates to 1 or 2 but "Private" if any other value is returned.

    Is it possible to nest If statements to do this or would I have to evaluate
    it in separate steps?

  2. #2
    Bob Phillips
    Guest

    Re: Nesting IF statements

    =IF(B1="NET",IF(OR(BIN2DEC(MID(A1,3,2))=1,BIN2DEC(MID(A1,3,2))=2),"National"
    ,"Private"),"Private")

    --

    HTH

    Bob Phillips

    (remove nothere from the email address if mailing direct)

    <[email protected]> wrote in message
    news:[email protected]...
    > I have a series of numbers representing sixteen bit binary:
    >
    > 0010110110001001
    > 0011111110001001
    > 0100000100010001
    > 0100010011010000
    > In the next column I have a formula: =IF(BIN2DEC(MID(A1,2,1))=1, "NET",
    > "OpID")
    >
    > The contents of the third column would depend on the result of this

    formula
    > such that if the second contains "OpID" this one will contain "Private".
    > However, if the second column value is "NET" then I need to look at
    > BIN2DEC(MID(A1,3,2))) and make the third column value "National" if this
    > evaluates to 1 or 2 but "Private" if any other value is returned.
    >
    > Is it possible to nest If statements to do this or would I have to

    evaluate
    > it in separate steps?




  3. #3

    Re: Nesting IF statements


    On 6-Mar-2006, "Bob Phillips" <[email protected]> wrote:

    > "
    > ,"Private"),"Private")


    Many thanks Bob.

+ 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