Peter3580

New Member
Joined
Feb 17, 2018
Messages
17
how can I find a specific value in a range of 32 numbers that is equal to 1 of 3 numbers
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
example - the three numbers are 5332, 4432 and 4333 and would be in cells A1, A2 and A3 the other 32 numbers are in Col D1:d31
 
Upvote 0
Peter3580, Good morning.

You have not explained exactly what you want to do.

To find out if there is a number in a given range, you can use the MATCH function.

example:
A1 --> 5332
A2 --> 4432
A3 --> 4333

Other number --> D1:D31

Try to use:

B1 --> =IF(ISERROR(MATCH(A1, $D$1:$D$31, 0)), "NOT FOUND", "-- OK --")

Copy it down as necessary.

But it depends on what you want as result.

I hope it helps.
 
Upvote 0

Forum statistics

Threads
1,213,511
Messages
6,114,054
Members
448,543
Latest member
MartinLarkin

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