Robert Edens
New Member
- Joined
- Mar 10, 2011
- Messages
- 11
When using VLookup and exact match, if I do not find an exact match in the table, I would like the cell with VLookup to resolve with a predetermined value.
If you're using Excel 2007 or later then you can use the IFERROR function.Thank you, but that did not work. Here is my formula...
=VLOOKUP(Customer_Name,CustomerList,2,FALSE) and it works. But when I don't have a match in the lookup, I want it to Resolve to Street Address.
If I understood your suggestion I get the response that there are too many arguments. I tried two versions of your suggestion.
Number 1:
=IF(ISNA(VLOOKUP(Customer_Name,CustomerList,2,FALSE),Street Address,Customer_Name,CustomerList,2,FALSE)
Number 2:
=IF(ISNA(VLOOKUP(Customer_Name,CustomerList,2,FALSE),Street Address,(VLOOKUP(Customer_Name,CustomerList,2,FALSE)
Street Address is not a "Named Range", it is the value I wish to have the formula resolve too if their is not an exact match.