nbrown Posted March 27, 2002 Posted March 27, 2002 I'm working on a calculation that will take two times and determine how many hours & minutes are between them. For example if I input 13:11 and 13:25 the calculation has to determine there is 14 minutes between the two values.. or 13:00 and 15:00 it needs to determine there are two hours between. The calculation that I'm currently using is not functioning properly it just keeps returning a -20. Any body out there that will show me the light? Thanks, Nic
andygaunt Posted March 27, 2002 Posted March 27, 2002 OK. Calc is End Time - Start Time. Format as time. This will determine the time difference. Will not work if you go over into the next day though. but as simple as I can get it, this works.
RussBaker Posted March 27, 2002 Posted March 27, 2002 Over more than one day, I use these fields StartDate, in date format FinishDate, in date format StartTime, in time format FinishTime, in time format Duration, in time format, calc field Then, the Duration is code: Duration = (FinishDate-StartDate)*86400 + (FinishTime-StartTime) Russ Baker
nbrown Posted March 28, 2002 Author Posted March 28, 2002 Excellent! Worked nicely. Thanks for your help.
Recommended Posts
This topic is 8333 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now