I need a formula to round seconds to the closest 15 second mark in the hh:mm:ss time format… i.e. say 1:01:10 needs to be rounded to 1:01:15 , say 0:34:20 rounded to 0:34:30, say 1:02:55 to 1:03:00
Hope someone can help as in excel I can use the MROUND formula but this is not in Airtable.
Solved
Rounding seconds to closest 15 seconds formula
Best answer by Julian_E_Post
Hi Brisbane,
Say your original field is called “Duration”. Try creating a formula field with this:
ROUNDUP(Duration/15,0)*15
Then format the formula field to be h:mm:ss like the original. Keep in mind that this is not rounding to the closest 15 seconds, it is rounding up, which looks like what you’re going for. If you wanted to round to the nearest 15 seconds, you’d use this:
ROUND(Duration/15,0)*15
Login to the community
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
