Show time only, not date in Softr/Airtable

Hi everybody,

I have created a timer, that while a little clunky, works fine. The only problem I have is that when my staff view their active timers, it shows the date first, then the time (see attached).

Our jobs are very short, so date is not necessary. Any way to not show the date in Softr when pulling the record from an Airtable date field?

Heya

I’m not using Airtable, so my answer might not be applicable 1:1.

In Softr database, I would create a new field of type “Formula” for this with the following formula to show the difference between expected and actual end time in minutes:

DATETIME_DIFF({Expected Finish},{Actual End Time},"minutes")

Or if you just want to strip the date part from your dates:

DATETIME_FORMAT({Actual End Time},"hh:mm")