Jul 30, 2021 08:09 AM
I have been messing around with formulas for two days, trying to figure out how to put a checkmark in the column if the post date is today or after. So, for my social media posts (which I don’t have automated from Airtable, I post them using another platform), once the time has come and gone that the post should have gone live, I want the formula column for that record to have a check box.
Thanks in advance for any help with this.
Kelsey
Solved! Go to Solution.
Aug 02, 2021 10:26 AM
If you need to account for the time component then replace TODAY()
with NOW()
. If you want to show the checkmark next to dates that have already happened use <=
instead of >=
Jul 30, 2021 01:43 PM
IF(
{Date Field} >= TODAY(),
"✅"
)
Aug 02, 2021 10:04 AM
Hmm…that didn’t work for me. :frowning:
I have this
which is resulting in this:
Aug 02, 2021 10:26 AM
If you need to account for the time component then replace TODAY()
with NOW()
. If you want to show the checkmark next to dates that have already happened use <=
instead of >=
Aug 02, 2021 10:28 AM
That worked! Thank you!!!