Newbies davidwdf Posted July 20, 2004 Newbies Posted July 20, 2004 I'm subtracting military time. Start = 0930 End = 1200 Time spent = 270 OK, my question is how can I get the results to show 2hrs and 30min? thanks wdf
RalphL Posted July 20, 2004 Posted July 20, 2004 You are using numbers as time. Convert the start time to a calculated time field. StartTime =Time(Left(start,2), Right(start,2), 0). Convert the end time to a calculated time field. EndTime =Time(Left(end,2), Right(end,2), 0). Make TimeSpent a calculated time field = EndTime - StartTime.
Recommended Posts
This topic is 7498 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