This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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 === "") |