Hi,
i’m implementing a booking system where there are fixed time slots.
I have a TimeColumn with the StartTime and i would like to get a TimeColumn with the EndTime calculated adding the StartTime and a TimeSlot value.
EX:
Start Time: 9:00 (entered)
Time Slot: 0:30 (fixed value)
End Time: 9:30 (calculated)
It’s not mandatory (in my app) to have TimeSlot as TimeColumn, it could be a string like “0:30” or a numeric value as 30.
How can i get this ?
Thanks in advance