look to see if a number exists in another column

inosent

Board Regular
Joined
Mar 19, 2007
Messages
131
hi

i have one column with 15000 numbers

i have another column with 18000 numbers

there are, by simple math, 3000 numbers missing, but i dont know which ones

i tried using

=IF(ISNUMBER(MATCH(E2,D1:D20000,0)),"",1)

but it finds a total of 1784 missing. so obviously that function isnt working

any way to do this to get an accurate fix on what is and isnt in that column?

thanks
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
You could put Conditional formatting on your column of 18000 with a formula
=ISNA(MATCH(E2,D:D,0))
assuming E is the 18000 column and D is the 5000 column.

P.S. might making $D$1:$D$20000 an absolute reference make your formula work properly?
 
Upvote 0

Forum statistics

Threads
1,224,524
Messages
6,179,310
Members
452,906
Latest member
phanmemchatdakenhupviral

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