August 21, 2010
Formulas
Converting seconds into a minutes:seconds format is rather simple once you know the component parts of the formula. We’ll use three functions. (click to review prior post) TIME(hour,minute,second) INT(number) MOD(number,divisor) For the TIME Function, the three arguments are: hour = 0 minute = INT(number) second = MOD(number, divisor) Which leaves us with: TIME(0, INT(number), MOD(number,divisor)) [...]
Get the full story …
August 19, 2010
Formulas
I’ve been looking at converting a number of seconds into a minutes:seconds format. My example is converting 274 seconds by using the INT Function to extract 4 minutes and the MOD Function to extract 34 seconds. In this post I’m using those values inside the TIME Function. The Time Function has three arguments: Hour, Minute, [...]
Get the full story …