|
Number of unique sets of data
A simple and effective way although not the only way to achieve what you want could be:
1 - In cell Z4, enter the formula: =O4&P4&Q4&R4&S4&T4&U4&W4&X4&Y4 to generate a string with the eleven numbers and copy it down to line 403.
2 - Then sort the data based on values in column Z.
3 - In cell AA4, enter the formula: =SI(Z4=Z3,0,1) to get a 0 if values are identical and a 1 if not and copy it down to line 403.
4 - The sum of cells AA4 to AA403 will give you the number of unique sets of numbers (those rows with a 1 in column AA).
Not a very elegant way of doing it but it works if the numbers from column O to Y are in increasing order like in your example, otherwise, it is back to the drawing board.
|