Skip to content

Instantly share code, notes, and snippets.

View kiikoh's full-sized avatar

Kyle DePace kiikoh

View GitHub Profile
@kiikoh
kiikoh / Code.gs
Last active March 2, 2020 21:38
Google Sheets Add-on for Calculating Weight Adjusted Erg Times
/**
* Adjusts rowing time to a rowers weight.
*
* @param {number} input The time represented as "1:46.5" or in seconds only "36.5"
* @param {number} input The weight of the rower in pounds.
* @return The weight adjusted time.
* @customfunction
*/
function WEIGHTADJUST(time, weight){
if(time === "")