Skip to main content
Solved

IF Date is before 4380 days ago

  • May 10, 2022
  • 1 reply
  • 10 views

Hey there
I still don’t get AirTable to the fullest and would appreciate some help. I got a database with Birth Dates and managed to find out peoples ages with the TONOW formula.

I would want a second row telling me wether the Date filed is more then 4380 days ago or not.

I tried something like IF(Date > 4380 days ago , “True”, “Not True”)

As this does not work - what can I do instead?
Thx for any hint.

Best answer by Vivid-Squid

Here is a good formula for getting a person’s age

DATETIME_DIFF(TODAY(),{Date of Birth},'years')

Here is a formula for finding out if a date is more than 4380 days ago

IF(DATETIME_DIFF(TODAY(), {Date of Birth}, 'days')>4380, 'true', 'not true')

1 reply

Forum|alt.badge.img+16
  • Inspiring
  • Answer
  • May 10, 2022

Here is a good formula for getting a person’s age

DATETIME_DIFF(TODAY(),{Date of Birth},'years')

Here is a formula for finding out if a date is more than 4380 days ago

IF(DATETIME_DIFF(TODAY(), {Date of Birth}, 'days')>4380, 'true', 'not true')