VLOOKUP formula help

JLawre08

New Member
Joined
Feb 21, 2022
Messages
3
Office Version
  1. 365
  2. 2021
  3. 2019
Platform
  1. Windows
  2. MacOS
Hello,

I wonder if someone could possibly help me with my VLOOKUP formula?

I have invoice numbers in column A and a second report on the same worksheet with different invoice numbers in column D.
I basically need Excel to me whether or not the invoice number in cell A3 is missing from cells D3:D500. If the invoice number IS in column D then I need excel to return the word "NO". If the invoice number ISNT in column D then I need excel to return the word "YES"

Please can anoyone help? I have tried IF with a VLOOKUP as well as IF with ISNA VLOOKUP :( but it still doesn't seem to be correct!
1652259831803.png
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
You could use:

Excel Formula:
=IF(ISNA(VLOOKUP(A3,$D$3:$D$500,1,FALSE)),"YES","NO")
 
Upvote 0

Forum statistics

Threads
1,216,095
Messages
6,128,804
Members
449,468
Latest member
AGreen17

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