Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Straight Numeric Number to HH:MM

Status
Not open for further replies.

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???
 
Hi !

This may work:

ToText(truncate(yournumber /60),0) + ':' + ToText(remainder(yournumber,60),0);

/Goran
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top