Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 8333 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

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

Posted

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.

Posted

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.