Skip to content

Instantly share code, notes, and snippets.

@rheajt
Last active June 2, 2016 06:34
Show Gist options
  • Save rheajt/d86c33bc8dfd512ac2ab1240922fa1a4 to your computer and use it in GitHub Desktop.
Save rheajt/d86c33bc8dfd512ac2ab1240922fa1a4 to your computer and use it in GitHub Desktop.

Simple script to get the top values from a range of values

The first parameter is the range of cells in the row that you want to compare

The second parameter is the number you want to return. Ex. If you want the top 4, then the number should be 4.

=GETTOP(A1:Z1, 4) 

returns the top 4 values from the range A1:Z1

/**
* Gives you the top 4 values from a range
* @param {array} range of numbers to get the top 4 from
* @param {number} number of values to return
* @return top 4
* @customfunction
*/
function GETTOP(gradeRange, topNumber) {
var allGrades = gradeRange.reduce(function(a,b) {
// flatten the multidimensional array into a single array
return a.concat(b);
}).filter(function(a) {
// remove any blank values from the array
return a !== '';
});
var top = allGrades.sort(function(a, b) {
// sort the array with the top values first
return b - a;
}).slice(0, topNumber); // slice the array to only return the 4 highest values
return [top];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment