+ Reply to Thread
Results 1 to 3 of 3

Implementing ISNA formula into equation.

  1. #1
    Forum Contributor
    Join Date
    08-23-2013
    Location
    Alberta, Canada
    MS-Off Ver
    Excel 365
    Posts
    166

    Implementing ISNA formula into equation.

    Not sure with Index and Match how to implement ISNA properly to make #N/A --> blank cells, until a value is assigned when I run my macro.

    =INDEX('Raw M'!$1:$1048576,MATCH('Auburn Bay'!$A58,'Raw M'!$A:$A,0),MATCH('Auburn Bay'!G$110,'Raw M'!$1:$1,0))

  2. #2
    Valued Forum Contributor
    Join Date
    01-10-2012
    Location
    Texas
    MS-Off Ver
    Excel 2010
    Posts
    651

    Re: Implementing ISNA formula into equation.

    not 100% sure the ask here - a sample workbook would be helpful... what macro?

    sounds like iferror might hehlp you out though:
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    that way if you get an error it will instead display a blank cell.

  3. #3
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Implementing ISNA formula into equation.

    Quote Originally Posted by JPSIMMON View Post
    ...until a value is assigned when I run my macro.

    =INDEX('Raw M'!$1:$1048576,MATCH('Auburn Bay'!$A58,'Raw M'!$A:$A,0),MATCH('Auburn Bay'!G$110,'Raw M'!$1:$1,0))
    That makes it sound like one or both of these cells might be empty:

    'Auburn Bay'!$A58
    'Auburn Bay'!G$110

    You could use IFERROR as suggested in some of your other threads but here's a different way.

    Use a test to make sure there are 2 entires in those cells.

    Something like this:

    =IF(COUNTA('Auburn Bay'!$A58,'Auburn Bay'!G$110)<2,"",INDEX('Raw M'!$1:$1048576,MATCH('Auburn Bay'!$A58,'Raw M'!$A:$A,0),MATCH('Auburn Bay'!G$110,'Raw M'!$1:$1,0)))
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] IF + OR formula using ISNA
    By waternut in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 06-24-2013, 10:20 AM
  2. How do I add ISNA to this formula?
    By Nobranalon in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 01-24-2013, 07:06 PM
  3. How do I add ISNA to this formula?
    By Nobranalon in forum Excel General
    Replies: 3
    Last Post: 01-24-2013, 07:06 PM
  4. [SOLVED] ISNA formula help
    By Darrenh1238 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 11-13-2012, 07:03 AM
  5. Need help in implementing same formula for different files
    By kishoremcp in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 01-17-2012, 11:14 PM

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