Excel: is there a subset function?
I have two rows of data, and I'm trying to program this rule:
If any of the values in the first row are not also in the second row, True.
If the second row contains everything in the first row, false.
Ex:
1st row: 500, 525, 550
2nd row: 500, 525
Result: true, because 550 is not in the second row.
Ex:
1st row: 5, 6, 8
2nd row: 5, 6, 8, 10
Result: false. Each element in the first row is also in the second.
Can this be done without element-by-element nested ifs,ands, and ors?