Formula to get the day name

Are you using our SaaS platform (Baserow.io) or self-hosting Baserow?

SaaS

What do you need help with?

Hi everyone, I need help with a formula that, given a date column, returns the day name in literal form, i.e., Monday, Tuesday, Wednesday …​

Currently the closest thing to Excel would be: datetime_format(field('created_at'), 'dddd'), but I’m getting numbers instead. For example, for 05/12/2025 15:09 the result is 1322.

Thank you very much in advance.

Just using ‘Day’ does the trick:

datetime_format(field('created_at'),'Day')
1 Like

Thank you very much @frederikdc!