Comparing Lists

Options
Hey, so I have a data base table that has about 70 boolean values. How would I go about comparing two entries and returning a score of how many values match up. So if the first entry has lines 1,3,5,7, and 9 true and the second entry has lines 2,3,5,6,7, and, 9 true then I would get a return value of 4 because four of the line items have the same value.

Comments