Thanks all. First, Nara is correct -- the formaula had an errant AX in it. It should have read:
=OR(AND(A1:A5=B1:B5),AND(A1:A5=C1:C5),AND(A1:A5=D1:D5))
I should have done a better job of describing what the formula accomplishes. Say you have 4 lists in cells A1 to A5:{Bob, Jim, Sam, Kim, Abe} ,B1 to B5: {Bob, "", Sam, Kim, Abe} , C1 to C5{Bob, Jim, Sam, "", Abe} , and D1 to D5 {Bob, Jim, Sam, Kim, Abe} . This formula would return TRUE because the first array was the same as one of the other arrays (the foruth array). If the fourth array was not the same as the first array (no arrays matched) Then the formula would return false.
This can get unwieldy if I want to do this for a lot of arrays, for example, is 1 array included in a list of 50 arrays. Any suggestions how to simplify the formula?
Thanks!