Help

Re: Calculating the difference between time/date values between records

2075 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Curtis_Budka
4 - Data Explorer
4 - Data Explorer

I am using this table as a punch clock. Each record is a time stamp for moving to a different repair order or stopping work entirely. So Each record needs to be able to identify how long it was until another record was created (only within a specified view). I currently have integromat free version hooked up for another table, so if I can avoid 3rd party integration for this that would be great.

Also noted: The primary field obviously uses the created time field to time stamp, but I also have a date/time field worked in with an IF statement that can be used to effectively “edit” the created time.

Thank you.

4 Replies 4
AlliAlosa
10 - Mercury
10 - Mercury

Hi there,

There might be an easier way… but I think you can accomplish this with a self-linking table. Create new records by linking them to the previous one.

You can then use the DATETIME_DIFF() function to get the difference in time. Example below uses minutes.

IF({Next Record}, DATETIME_DIFF(DATETIME_PARSE({Next Record}, 'M/D/YYYY h:mm a'), Name, 'minutes') & " Minutes")

EX.jpg

To add to the solution by @AlliAlosa, I suggest creating a view with a filter to only show records where {Next Record} has no link, switching on that field’s “Limit record selection to a view” option, and targeting that view. That will make it a lot easier to add new links, because only the latest two unlinked records will appear (the one you’re creating a link in, and the target of that link), instead of all records in the whole table.

This is a great idea. I implement something similar whenever I’m training someone who doesn’t understand Airtable well. Great way to force them to pick the correct record.

Curtis_Budka
4 - Data Explorer
4 - Data Explorer

Thank you, I think I will be able to plug this in to integromat to automate.