Oct 24, 2002 #1 ALIVEAVIA Technical User Oct 3, 2002 2 US I have a number of 103, and I need to write a formula that makes the result a time of 1:43 (one hour and fourty three minutes). Any ideas???
I have a number of 103, and I need to write a formula that makes the result a time of 1:43 (one hour and fourty three minutes). Any ideas???
Oct 24, 2002 #2 goranm Programmer Dec 18, 2001 247 SE Hi ! This may work: ToText(truncate(yournumber /60),0) + ':' + ToText(remainder(yournumber,60),0); /Goran Upvote 0 Downvote
Hi ! This may work: ToText(truncate(yournumber /60),0) + ':' + ToText(remainder(yournumber,60),0); /Goran
Oct 24, 2002 Thread starter #3 ALIVEAVIA Technical User Oct 3, 2002 2 US Thank You it works perfect!!! Upvote 0 Downvote