Save the date! Join us on October 16 for our Product Ops launch event. Register here.
May 14, 2021 12:48 PM
Hi, what formula can I use to show many days remain for a task?
For example, if there are 4 days remaining before the Due Date, I’d like that cell to read “4”
I tried using a formula from another table but it didn’t work. The existing formula was: IF({Name (from Due Date)}, DATETIME_DIFF({Name (from Due Date)}, TODAY(), ‘days’))
My new formula is: IF({Follow Up Date}), DATETIME_DIFF({Follow Up Date}), TODAY(), ‘days’)) - but this one doesn’t seem to function correctly.
Any help is greatly appreciated. Thanks! Christopher
Solved! Go to Solution.
May 15, 2021 03:09 AM
Hi @Torus_Global - you’re nearly there. There’s a couple of stray RH brackets that must have got copied over. Try this
IF({Follow Up Date}, DATETIME_DIFF({Follow Up Date}, TODAY(), 'days'))
May 15, 2021 03:09 AM
Hi @Torus_Global - you’re nearly there. There’s a couple of stray RH brackets that must have got copied over. Try this
IF({Follow Up Date}, DATETIME_DIFF({Follow Up Date}, TODAY(), 'days'))
May 17, 2021 02:10 AM
Bingo, that was it. Thanks, @JonathanBowen!