Closed Thread
Results 1 to 7 of 7

Syntax to "OR" 3 "ISERROR" conditions

  1. #1
    Mike K
    Guest

    Syntax to "OR" 3 "ISERROR" conditions

    Oh Wise Ones,
    I would like to filter the conditions of 3 columns for
    errors and evaluate in a fourth. I need a null value not just a white font.
    I've played with the OR syntax and nothing works. Any ideas please?

    Basically I need in D1:
    IF A1 OR B1 OR C1 is in error "" else C1.

    Thanks,
    Mike

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Try this array

    =IF(ISERROR(A1:C1),"",C1)

    Enter in D1 with Ctrl + Shift + Enter

    or this alonger non arrays

    =IF(OR(ISERROR(A1),ISERROR(B1),ISERROR(C1)),"",C1)



    VBA Noob

  3. #3
    Alan
    Guest

    Re: Syntax to "OR" 3 "ISERROR" conditions

    =IF(OR(ISERROR(A1),ISERROR(B1),ISERROR(C1)),"",C1)
    Regards,
    Alan.
    "Mike K" <MikeK@discussions.microsoft.com> wrote in message
    news:07A05135-C8BC-4D9E-83A7-EF84BF80C173@microsoft.com...
    > Oh Wise Ones,
    > I would like to filter the conditions of 3 columns
    > for
    > errors and evaluate in a fourth. I need a null value not just a white
    > font.
    > I've played with the OR syntax and nothing works. Any ideas please?
    >
    > Basically I need in D1:
    > IF A1 OR B1 OR C1 is in error "" else C1.
    >
    > Thanks,
    > Mike




  4. #4
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Alan,

    I suugested that too. Give him the option

    VBA Noob

  5. #5
    Alan
    Guest

    Re: Syntax to "OR" 3 "ISERROR" conditions

    Your reply wasn't on the screen when I replied, if it had been I wouldn't
    have duplicated it. Your array formula is a good one,
    Regards,
    Alan.
    "VBA Noob" <VBA.Noob.2bcqht_1153580110.6426@excelforum-nospam.com> wrote in
    message news:VBA.Noob.2bcqht_1153580110.6426@excelforum-nospam.com...
    >
    > Alan,
    >
    > I suugested that too. Give him the option
    >
    > VBA Noob
    >
    >
    > --
    > VBA Noob
    > ------------------------------------------------------------------------
    > VBA Noob's Profile:
    > http://www.excelforum.com/member.php...o&userid=33833
    > View this thread: http://www.excelforum.com/showthread...hreadid=563980
    >




  6. #6
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Doh...My bag.

    I saw your or and thought it was another suggestion.


    VbA Noob

  7. #7
    Mike K
    Guest

    Re: Syntax to "OR" 3 "ISERROR" conditions

    Thanks.

    "VBA Noob" wrote:

    >
    > Try this array
    >
    > =IF(ISERROR(A1:C1),"",C1)
    >
    > Enter in D1 with Ctrl + Shift + Enter
    >
    > or this alonger non arrays
    >
    > =IF(OR(ISERROR(A1),ISERROR(B1),ISERROR(C1)),"",C1)
    >
    >
    >
    > VBA Noob
    >
    >
    > --
    > VBA Noob
    > ------------------------------------------------------------------------
    > VBA Noob's Profile: http://www.excelforum.com/member.php...o&userid=33833
    > View this thread: http://www.excelforum.com/showthread...hreadid=563980
    >
    >


Closed 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