Create a Match formula to look for a result within two sheets...

tibbetsj

New Member
Joined
May 4, 2018
Messages
2
I am working on automating a process. Part of the process is to detect when new people appear on the raw data. I am trying to come up with a formula that will look for the persons ID3 on 2 sheets and tell me if they do not exist.

I came up with:
=IF(ISNA(MATCH(A4,NH!A:A,0)),MATCH(A4,BH!A:A,0),"New")

But I can already see the flaw that it will not work properly. I am stuck in trying to figure something out. The only way I can think of to do it would take three cells to do it. Each with a different function to search one sheet. Then a comparison. However I would like to see if I can get it down to just one function in one cell.

Any advice is appreciated.

Thank you,
James
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Welcome to Mr Excel forum

Maybe...
=IF(AND(ISNA(MATCH(A4,NH!A:A,0)),ISNA(MATCH(A4,BH!A:A,0))),"New","Found")

Hope this helps

M.
 
Upvote 0

Forum statistics

Threads
1,215,506
Messages
6,125,193
Members
449,213
Latest member
Kirbito

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