Links

start

To return the start timestamp of a given appointment
With this function, you can address the start of an appointment. The function will return the date + time of the appointment, which can be further processed and formatted.

Syntax

start(appointment)

Return

timestamp

Examples

Your result format may be different depending on your settings.
start(Appointment)
Result:
  • 06/02/2021 09:00 (US)
  • 02/06/2021 09:00 (UK)
with Appointment =
  • 06/02/2021 09:00 - 07/03/2021 18:00 (US)
  • 02/06/2021 09:00 - 03/07/2021 18:00 (UK)
1
format(start(Holiday1), "dddd, HH:mm") + " h"
Result: Monday, 09:00 h (with Holiday1 = 24.05.2021 09:00 - 28.05.2021 18:00)

See also

endof, which returns the end of an appointment.
Last modified 1yr ago