07-31-2020, 07:01 AM
|
#19
|
Member
Posts: 15
Karma: 10
Join Date: Jul 2020
Device: none
|
Quote:
Originally Posted by davidfor
And here was me thinking of doing:
Code:
program:
minutes = divide(raw_field('#words'),310);
hours = divide(minutes, 60);
hours = list_item(hours,0,'.');
minutes = subtract(minutes, multiply(hours,60));
minutes = format_number(minutes, '02,.0f');
strcat(hours,':',minutes)
Ugly, but it seems to work. I'd probably combine a couple of lines, but, separating them helps the debugging.
But, I've wanted some of your new functions before. So, I'm happy to see them.
|
Oh yay this is awesome
|
|
|