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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Simple Formula (I Hope) Assistance 1

Status
Not open for further replies.

keeno

MIS
Feb 24, 2006
33
GB
Hello

I am using Crystal Reports XI on an Oracle database

I need to convert a Field (DURATION.TIME) from Minutes to Hours and Minutes.

Can someone advise what formula i need to apply to the DURATION.TIME field to show as HH:MM

Many Thanks

Keeno
 
Code:
ToText(75 \ 60, 0, "") & ":" & ToText(Remainder(75, 60), 0, "")
will return: "1:15".
Replace 75 with your Duration field.

-------------------------------------------------------------------------------------------------------------------------
"Now I can look at you in peace; I don't eat you any more." Franz Kafka, while admiring fish in an aquarium
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top