+ Reply to Thread
Results 1 to 4 of 4

need help getting rid of #N/A in an array formula

  1. #1
    Registered User
    Join Date
    07-22-2004
    Posts
    89

    need help getting rid of #N/A in an array formula

    this formula:
    =INDEX(List,MATCH(0,COUNTIF($K$3:K14,List),0))

    IS WORKING PERFECT, doing everything I need.

    only issue sometimes the output is "#N/A"
    its not a big deal but for my user I want the cell to appear blank
    ; QUESTION: what do i tweak??

    THANK YOU!

  2. #2
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: need help getting rid of #N/A in an array formula

    Which version of XL are yo using?

    XL2007+ you can use IFERROR
    =IFERROR(INDEX(List,MATCH(0,COUNTIF($K$3:K14,List),0)),"")

    XL2003- you need to use an IF(ISNA structure

    =IF(ISNA(MATCH(0,COUNTIF($K$3:K14,List),0)),"",INDEX(List,MATCH(0,COUNTIF($K$3:K14,List),0)))

  3. #3
    Registered User
    Join Date
    07-22-2004
    Posts
    89

    Re: need help getting rid of #N/A in an array formula

    2013
    PERFECT thanx.

  4. #4
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: need help getting rid of #N/A in an array formula

    Great, glad to help.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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