Nov 11, 2023 04:33 PM
We have a Start Date (Date field) and a Start Time (Duration Field). I want to combine them together.
The first formula I have does combine them, but not in the way that airtable calendar view recognizes it as a date/time field.
Can you help me create a formula that will format it properly (more like the "copy" field below, but showing the correct time.
Currently I am using:
Solved! Go to Solution.
Nov 12, 2023 08:08 AM
Got it @David_ALLEN-HUG you might need to do a little wizardry to work around this. One thought that comes to mind is adding a single select field where the user specifies "All Day Event" vs "Non-All Day Event" (feel free to come up with better names), and then use a formula field with a conditional IF statement, to output the date (calculated in the earlier step) in the correct format depending on the event type.
Nov 12, 2023 08:17 AM
I was afraid you might say something like that! 😉
This is way above my ability. I have a checkbox field "All Day Event". Any suggestions for formula I could use?
Nov 12, 2023 09:13 AM
@David_ALLEN-HUG give this a go (change to match your field names):
IF(
({All Day Event?}),
DATETIME_FORMAT({Start}, "DD/MM/YYYY"),
DATETIME_FORMAT({Start}, "DD/MM/YYYY HH:mm")
)
Nov 12, 2023 09:20 AM
So close!
FORMULA USED:
1. It shows error if All Day event is NOT checked
2. I think All Day event is mixed up...if box is NOT checked, then show the date & time
Nov 12, 2023 09:52 AM
Hey @David_ALLEN-HUG check the setup carefully, instead of running the formula on Start Date, it should run on the field that combines date and time together. Re look at my example and how I've setup my table, I've got the Date Field, then Start Time, then 'Start' (which is the combined field). My formula in the 'Formatted Date' field, uses the 'Start' field. Where is the field on your table that combines date and time?
Nov 12, 2023 11:00 AM
Nov 12, 2023 01:31 PM
@David_ALLEN-HUG just need a tiny change to use the combined field for both:
IF( ({All Day Event}), DATETIME_FORMAT({Combined START Date & Time}, "MM/DD/YYYY"), DATETIME_FORMAT({Combined START Date & Time}, "MM/DD/YYYY HH:mm") )
Nov 12, 2023 03:41 PM