Jan 13, 2021 03:34 PM
Increment a Date - I want to calculate another field by adding 30-60-90 dates to a start date. Is that possible? I’ve tried using the DATETIME_FORMAT function - DATETIME_FORMAT({Start Date}+30,‘YYYY-MM-DD’) and with brackets around the 30
Solved! Go to Solution.
Jan 14, 2021 09:34 AM
No problem. And yes, you should be able to hide the time in that same “Customize field type” popup where you wrote the formula. Click on the ‘Formatting’ tab inside that popup, and unselect “Include a time field”.
Jan 14, 2021 03:45 AM
You are most likely looking for DATEADD. Try this:
DATEADD({Start Date}, 30, "days")
You might need to mess with the formatting tab, and may want to choose “Use the same time zone (GMT) for all collaborators” to avoid time zone issues.
Jan 14, 2021 09:15 AM
Thank you Nick!! That’s it! Any way to supress the time?? Appreciate your insight…
Jan 14, 2021 09:34 AM
No problem. And yes, you should be able to hide the time in that same “Customize field type” popup where you wrote the formula. Click on the ‘Formatting’ tab inside that popup, and unselect “Include a time field”.
Jan 14, 2021 09:37 AM
Viola!!! You’re a gem!! I’m just scratching the surface of how to utilize Air Table…thanks for your expertise!! Cheers, Frank
Jan 15, 2021 03:10 PM
Thanks for you help!!!
Much appreciated!