Identifying a match on a value on multiple worksheets

janetk411

New Member
Joined
Feb 7, 2019
Messages
15
Good afternoon,
I have tried to use an IF statement using MATCH on this but it has not been working for me.
I have three worksheets containing invoice numbers
One is a Summary
The other two represent the East and West Region.
Each of the region worksheets contain invoice numbers from their respective region.

Then on the summary worksheet I want to be able to identify which region has those invoices as shown in Column B.
Column B on the Summary would show EAST, WEST, BOTH or NONE...

Can someone possibly help me with this formula.
I have attached an example of the spreadsheets I am working with.

Thank you !

Janet
 

Attachments

  • 2022-12-27_13-45-59.jpg
    2022-12-27_13-45-59.jpg
    31.1 KB · Views: 4

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Assuming your values are on column A and sheet names are WEST REGION and EAST REGION. Paste this to SUMMARY B1:
Excel Formula:
=IF(COUNTIF('WEST REGION'!A:A,A1)*COUNTIF('EAST REGION'!A:A,A1)>0,"BOTH",IF(AND(COUNTIF('WEST REGION'!A:A,A1)>0,COUNTIF('EAST REGION'!A:A,A1)=0),"WEST",IF(AND(COUNTIF('WEST REGION'!A:A,A1)=0,COUNTIF('EAST REGION'!A:A,A1)>0),"EAST","NONE")))
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,519
Members
448,968
Latest member
Ajax40

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