Check if an item exist in my shelf

xlnab

New Member
Joined
Sep 16, 2020
Messages
11
Office Version
  1. 2016
Platform
  1. Windows
Hello guys!

I'm so sorry if this is basic but I searched everywhere online and in the forum. I can't find a way to do this and can't come up with the right question.
If this is a duplicate, i'm sorry, please point me in the right direction.

Considering the example bellow, I need a way to check if the items in the column ITEM exists in the shelf and if not, if they exist in the warehouse to warn me.
I tried MATCH, INDEX, LOOKUP, but I cant figure out to match the conditions i need.

Can someone help me please?
Thansk in advance.

ItemDateLocation
Item 12019Shelf
Item 22019Warehouse
Item 32019Shelf
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Like this?
Snag_4062c5d.png
 
Upvote 0
If you just want Ok next to Shelf and NOK next to warehouse then you can do this

Code:
=IF(C2="Shelf","OK","NOK")
 
Upvote 0
If you just want Ok next to Shelf and NOK next to warehouse then you can do this

Code:
=IF(C2="Shelf","OK","NOK")
I'm not expressing my self correctly, i'm sorry, this is too complex to me.
I feel you are very close to what I'm looking for. Can you look below please?

Sem Título.png
 
Upvote 0
Thank you for your help, I found a way. I concatenated the two cells ITEM and LOCATION and make a vlookup, does the trick! Thank you so much for enlighten me!!!
 
Upvote 0

Forum statistics

Threads
1,214,784
Messages
6,121,540
Members
449,038
Latest member
Guest1337

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