Feb 8, 2005 #1 vangundy Programmer Jan 29, 2005 38 CA I have a number field in my Access table, field1. Field1 shows data as seconds. Field1 3600 I want to convert this to hrs and second so it shows as 1 hr How can I do this?
I have a number field in my Access table, field1. Field1 shows data as seconds. Field1 3600 I want to convert this to hrs and second so it shows as 1 hr How can I do this?
Feb 8, 2005 #2 PHV MIS Nov 8, 2002 53,708 FR Something like this ? Format([Field1/86400, "h \hr n \mi\n s \se\c") Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244 Upvote 0 Downvote
Something like this ? Format([Field1/86400, "h \hr n \mi\n s \se\c") Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
Feb 9, 2005 Thread starter #3 vangundy Programmer Jan 29, 2005 38 CA Perfect thank you! Upvote 0 Downvote