Closed Thread
Results 1 to 18 of 18

How to extract data if a value is present

Hybrid View

  1. #1
    Registered User
    Join Date
    03-21-2008
    Posts
    52
    Yeah, tons of them! Is there a way of ignoring these results as otherwise the cells I'm going to be searching will make my formula huge!

  2. #2
    Forum Expert Ron Coderre's Avatar
    Join Date
    03-22-2005
    Location
    Boston, Massachusetts
    MS-Off Ver
    2013, 2016, O365
    Posts
    6,996

    Dealing with #NA errors in a referenced range

    It's more professional to fix the formulas so they don't return #NA.

    But, if you must have the errors, here are two ARRAY FORMULA options.
    Note: Commit array formulas with CTRL+SHIFT+ENTER, instead of just ENTER.

    Option_1:
    =SUMPRODUCT(IF(ISTEXT(P8:BX182),(LEFT(P8:BX182,1)="H")*MID(P8:BX182,3,255)))
    
    Option_2:
    =SUMPRODUCT(IF(NOT(ISERROR(P8:BX182)),(LEFT(P8:BX182,1)="H")*MID(P8:BX182,3,255)))
    I hope that helps.
    Ron
    Former Microsoft MVP - Excel (2006 - 2015)
    Click here to see the Forum Rules

  3. #3
    Registered User
    Join Date
    03-21-2008
    Posts
    52
    Hmmm, getting a value error now. Maybe we should look at fixing the n/a error. The formula that is creating the errors (because it is refering to data that is not yet present) is:

    =VLOOKUP($E8,'1st'!$B$4:$Q$340,16,FALSE)
    Do we use ISERROR to get rid of the errors? I'll try a few things but any help would be appreciated!

  4. #4
    Forum Expert Ron Coderre's Avatar
    Join Date
    03-22-2005
    Location
    Boston, Massachusetts
    MS-Off Ver
    2013, 2016, O365
    Posts
    6,996

    Trapping potential #NA errors in formulas

    Try something like this:
    =IF(COUNT(MATCH($E8,'1st'!$B$4:$B$340,0)),VLOOKUP($E8,'1st'!$B$4:$Q$340,16,FALSE),"")
    Can you work with that?

  5. #5
    Registered User
    Join Date
    03-21-2008
    Posts
    52
    So I've sorted the n/a error in my original calculations by changing it to:

    =IF(ISERROR(VLOOKUP($E8,'1st'!$B$4:$Q$340,16,)),"",(VLOOKUP($E8,'1st'!$B$4:$Q$340,16,FALSE)))
    I'm still getting the value error. Any suggestions please Ron/anyone?

    Thanks, Chris

  6. #6
    Registered User
    Join Date
    03-21-2008
    Posts
    52
    Thanks Ron - we got there at about the same time on the n/a error!

    I don't know where to begin with the value error though, as I don't understand your original formula completely.

    Have I done something wrong when inputting my own cell range?

  7. #7
    Forum Expert Ron Coderre's Avatar
    Join Date
    03-22-2005
    Location
    Boston, Massachusetts
    MS-Off Ver
    2013, 2016, O365
    Posts
    6,996

    Trapping potential #NA errors in formulas

    Technically, the formulas that you and I posted would trap
    the #NA (no matching value) error. Now it's time to look in Col_Q of the
    referenced range to see if any of those cells resolve to "#VALUE!".

  8. #8
    Registered User
    Join Date
    03-21-2008
    Posts
    52
    Aha! The cells that this formula is being run over will sometimes contain just a letter (N, S, L etc.). If I run it just on cells with numeric or alpha-numeric containing the H it's fine. So how do we get it to ignore cells that contain just a letter?

    Thanks for helping me with this Ron!

    Oh yeah, they may also contain 2 letters eg. SU. Thanks!
    Last edited by monkdelafunk; 08-28-2008 at 01:42 PM. Reason: Forgot to mention!

Closed Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Can't seem to get the automatic selection of data present down!
    By wantucce in forum Excel Programming / VBA / Macros
    Replies: 14
    Last Post: 08-18-2008, 04:51 AM
  2. Data Extract
    By joeserrone in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-06-2008, 11:34 PM
  3. Chart to only reflect points where data present?
    By mhb22079 in forum Excel Charting & Pivots
    Replies: 3
    Last Post: 12-04-2007, 01:12 PM
  4. insert rows only if data is present
    By jbenton in forum Excel General
    Replies: 0
    Last Post: 11-08-2007, 12:43 PM
  5. Replies: 3
    Last Post: 05-12-2007, 08:12 AM

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