spillott said:
I don't have a central value (1000) that I want to be plus or minus from
which is the issue I cannot get around. The data ranges in both lists
from 0 - over 20 million so I would need an infinite number of central
values with limits of +/- 500. What I am trying to do is have all the
data in 1 list compare to all the data in the other list and output the
pairs that are similar wheather they are both at $5 or $5 000 000.
Not very sure (hang around for better insights from others) ..
Assuming the 2 lists are within say, A1:B10 in sheets named as: X, Y
A1:A10 = names, B1:B10 = numbers
Numbers are assumed unique numbers within B1:B10 in either X or Y
Try this in a new sheet: Z (say)
In A1:
=IF(B1="","",X!A1&"-"&INDEX(Y!A:A,MATCH(X!B1,Y!B:B,0)))
In B1:
=IF(ISNUMBER(MATCH(X!B1,Y!B:B,0)),X!B1,"")
Select A1:B1, copy down to B10
Col A returns the concat string of the pairs of names with matching numbers
(X - Y strings), while col B returns the corresponding matching numbers