Auto set Time in Datetime field

I would when a column as a specific value to set in a datetime column the time,
example:

  • when in column Color there is the value yellow, in the column Calendar the datetime must have the day customizable but the time must be โ€œ09:00:00โ€

How could I proceed?

You can either use the existing DateTime field with the initial value something like..
TODAY()&" "&
SWITCH([Color],
โ€œYellowโ€,โ€œ09:00:00โ€,
โ€œBlueโ€,โ€œ10:00:00โ€,
โ€œ12:00:00โ€
)

If you want to select the date individually, add an additional date column and then use that date with your existing DateTime column in a same way.

1 Like