What would be the best way to turn
this into templates for the KoboTouch read estimates?
Code:
HoursMax = round(WordCount / 200 / 60)
HoursMin = HoursMax - 1
if (HoursMax >= 10) {
HoursMax += round((HoursMax + .5) / 10) - 1)
}
I managed to get this so far, but my brain isn't cooperating at the moment
Code:
program: round(divide(divide($#wordcount, 200), 60))