Forum Discussion
ideepdosanjh
Dec 04, 2021Copper Contributor
formula for list top ten occurring numbers in a complete spreadsheet
Hi all, i am trying to find a formula for finding the top 10 most occurring number from B5 to U17
PeterBartholomew1
Dec 04, 2021Silver Contributor
If you have a list 'seq' of possible numbers that might arise in the 'data' array
= COUNTIFS(data, seq)will provide a list of frequencies for each number within 'seq'. To list the numbers in decending order of frequency you could use
= SORTBY(seq, freq, -1)and INDEX could restrict the number of values returned to 10.