+ Reply to Thread
Results 1 to 3 of 3

Re: #NAME?

  1. #1
    Susan Hayes
    Guest

    Re: #NAME?

    Hello

    I am trying to create a blank in a cell if the following appears: #NAME?

    I'm using a program that downloads information into excel, however when a particular cell with a formula doesn't
    pickup the information eg. a price or name it returns: #NAME?

    Eg. in cells A10 and B10 both show #NAME?

    When this happens I would like cell A2 to remain blank, however it does not work. I wrote the following:

    If(and(A10="#NAME?",B10="#NAME?"),"","")


    Thank you in advance

    Susan



  2. #2
    Bob Phillips
    Guest

    Re: #NAME?

    =IF(AND(ISERROR(A10),ISERROR(B10)),"","value")

    --

    HTH

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


    "Susan Hayes" <[email protected]> wrote in message
    news:[email protected]...
    > Hello
    >
    > I am trying to create a blank in a cell if the following appears: #NAME?
    >
    > I'm using a program that downloads information into excel, however when a

    particular cell with a formula doesn't
    > pickup the information eg. a price or name it returns: #NAME?
    >
    > Eg. in cells A10 and B10 both show #NAME?
    >
    > When this happens I would like cell A2 to remain blank, however it does

    not work. I wrote the following:
    >
    > If(and(A10="#NAME?",B10="#NAME?"),"","")
    >
    >
    > Thank you in advance
    >
    > Susan
    >
    >




  3. #3
    Harlan Grove
    Guest

    Re: #NAME?

    Bob Phillips wrote:
    >=IF(AND(ISERROR(A10),ISERROR(B10)),"","value")

    ....

    This picks up any error, not #NAME? only. Better to use

    =IF(COUNTIF(A10:B10,"#NAME?")=2,"","value")


+ 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