View Single Post
Old 07-31-2020, 07:01 AM   #19
kcar181
Member
kcar181 began at the beginning.
 
kcar181's Avatar
 
Posts: 15
Karma: 10
Join Date: Jul 2020
Device: none
Talking

Quote:
Originally Posted by davidfor View Post
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
kcar181 is offline   Reply With Quote