ibiubu Posted January 6, 2005 Posted January 6, 2005 EDITED Here is what I got to work that was able to calc the difference between a start and stop time field to determine the time spent on the task. Round( Hour( Stop - Start ) + Minute( Stop - Start) / 60, 2) + If( Stop <= Start, 24, 0) Larry
RalphL Posted January 6, 2005 Posted January 6, 2005 Make the calculation field a number field. It will now give you the number of seconds for the difference. Divide this by 3600 second/hour to get the time in hours and a decimal fraction. You can use the round fuction to get it to the nearest 2 places.
Recommended Posts
This topic is 7330 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