Formula - IFERROR?

Spaztic

New Member
Joined
Jul 27, 2023
Messages
48
Office Version
  1. 365
Platform
  1. Windows
Need a little help here. The example below shows that the user will enter a color (types it in). I want the Answer to:
1) If it's in the lookup, return the value
2) If it's left blank, return blank
3) If something is entered and not in the lookup, return blank

1729036354683.png
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
Using XLookup below:

Book1
BCDE
4EnterRed225
5BlueBlue720
6Green340
7AnswerYellow110
8720Orange620
Sheet1
Cell Formulas
RangeFormula
B8B8=IF(B5="","",XLOOKUP(B5,D4:D8,E4:E8,""))


VLookup equivalent:
Excel Formula:
=IF(B5="","",IFERROR(VLOOKUP(B5,D4:E8,2,FALSE),""))
 
Upvote 0
Solution

Forum statistics

Threads
1,223,231
Messages
6,170,884
Members
452,364
Latest member
springate

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top