May 04, 2023 07:20 AM
Dear community
I’m a nubee here. Trying to schedule a non profit festival.
Is there a formula for getting start and end time into the same column?
Such as:
May 04, 2023 07:35 AM
Hey Uffe! Try to use the " & " operator to concatenate the formatted date fields, and add a separator if needed, such as a space or comma. This formula should work:
DATETIME_FORMAT(Date1, 'YYYY-MM-DD HH:mm:ss') & ' | ' & DATETIME_FORMAT(Date2, 'YYYY-MM-DD HH:mm:ss')
May 04, 2023 07:35 AM
Try:
DATETIME_FORMAT({Start Date},'dd. DD. HH:mm') & "-" & DATETIME_FORMAT({End Date},'HH:mm')
May 04, 2023 12:32 PM
Perfect, thank you so much, both of you!
Hugs