+ Reply to Thread
Results 1 to 8 of 8

Data Validation and LOOKUP problem

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    09-09-2013
    Location
    California, USA
    MS-Off Ver
    MS 365 Subscription
    Posts
    130

    Data Validation and LOOKUP problem

    I have a table that has a data validation drop down list. When I pick an Item, the information from another table is transferred over. Everything is working except for when I manually enter a Item that is not in my item list, all the cells in the table display #N/A. I attached an example file to this thread.

    When I enter an Item that is not in my Item list, I want column D in that row to have the value "Unit" and Columns E,F,G to display nothing.
    You can see what I am trying to explain in my example file.

    Thank you

    Example File.xlsx

  2. #2
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Data Validation and LOOKUP problem

    Just encapsulate each expression in IFERROR(formula,"")

    If an expression evaluates to an error, you can default to ""
    Make Mom proud: Add to my reputation if I helped out!

    Make the Moderators happy: Mark the Thread as Solved if your question was answered!

  3. #3
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: Data Validation and LOOKUP problem

    For column D

    =IFERROR(VLOOKUP(B5,Prices,2,FALSE),"Unit")

    for other columns

    =IFERROR(VLOOKUP(B5,Prices,3,FALSE),"")
    If you like my answer please click on * Add Reputation
    Don't forget to mark threads as "Solved" if your problem has been resolved

    "Nothing is so firmly believed as what we least know."
    --Michel de Montaigne

  4. #4
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2406
    Posts
    44,662

    Re: Data Validation and LOOKUP problem

    OK, try this one out for size...
    Attached Files Attached Files
    Glenn




    None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU

  5. #5
    Forum Contributor
    Join Date
    09-09-2013
    Location
    California, USA
    MS-Off Ver
    MS 365 Subscription
    Posts
    130

    Re: Data Validation and LOOKUP problem

    Quote Originally Posted by Glenn Kennedy View Post
    OK, try this one out for size...
    Thank you, this almost does everything I need it to do. There is just one change I need to make to the way it sums up at the end of the table.
    I need the price to be multiplied by the quantity, and when I put an Item that is not in the list I get a #VALUE! error.

    Here is an example file:
    Example File2.xlsx

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

    Re: Data Validation and LOOKUP problem

    If you're using Excel 2013 you can use the IFNA function.

    Entered in D5 and copied down:

    =IF(B5="","Unit",IFNA(VLOOKUP(B5,Prices,2,0),""))

    Entered in E5:

    =IF($B5="",0,IFNA(VLOOKUP($B5,Prices,COLUMNS($E5:E5)+2,0),""))

    Copy across to G5 then down as needed.
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  7. #7
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Data Validation and LOOKUP problem

    Try this instead...=IF(B5="","",SUM(E5:G5)*C5)

    edit: also, try this in E5, copied down and across...
    =IFERROR(INDEX($M$6:$O$11,MATCH($B5,$K$6:$K$11,0),MATCH(E$4,$M$5:$O$5,0)),"")
    Last edited by FDibbins; 06-27-2014 at 08:04 PM.
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  8. #8
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2406
    Posts
    44,662

    Re: Data Validation and LOOKUP problem

    Looks good to me, too...

+ 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] Data Validation, Lookup, multi lookup, referancing and other.
    By archasem in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 08-04-2013, 10:50 AM
  2. Data Validation with Lookup
    By ryancgarrett in forum Excel General
    Replies: 3
    Last Post: 06-19-2013, 04:23 PM
  3. Validation & Lookup Problem
    By tmkkoservo in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 10-16-2009, 09:06 AM
  4. Validation/Lookup/maybe forms problem (I think)
    By simjambra in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 08-20-2008, 04:14 AM
  5. Lookup validation data
    By Craig in forum Excel General
    Replies: 1
    Last Post: 03-29-2006, 11:35 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