Upcoming database upgrades. Airtable functionality will be reduced for ~15 minutes at 06:00 UTC on Feb. 4 / 10:00 pm PT on Feb. 3. Learn more here
Jul 20, 2022 06:35 AM
Good Morning,
I am trying to create a “Weeks Active” field in a base. I have a “schd_start” date field and a calculated “Today’s Date” field. I would like to determine the difference between the two dates and have Weeks Active then calculated. Thank you in advance! :slightly_smiling_face:
Dan
Jul 20, 2022 08:50 AM
Either:
DATETIME_DIFF({schd_start}, {Today}, "weeks")
or
DATETIME_DIFF({Today}, {schd_start}, "weeks")
Jul 20, 2022 10:57 AM
Perfect!!! Thank you very much!