Help

Re: Struggling with a formula for counting difference between dates

Solved
Jump to Solution
556 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Matthew_Grundy
4 - Data Explorer
4 - Data Explorer

Hello,

I’m trying to make a formula that counts the difference between start date and end date, however if end date is blank calculate the difference between start date, and current date.

Sorry if it sounds simple, i’m very new to airtable!

Thanks
Matt

1 Solution

Accepted Solutions
JonathanBowen
13 - Mars
13 - Mars

Hi @Matthew_Grundy - try this:

IF(
{End Date}, 
DATETIME_DIFF({End Date}, {Start Date}, 'days'), 
DATETIME_DIFF(TODAY(), {Start Date}, 'days')
) 

Screenshot 2019-08-19 at 16.28.55.png

JB

See Solution in Thread

3 Replies 3
JonathanBowen
13 - Mars
13 - Mars

Hi @Matthew_Grundy - try this:

IF(
{End Date}, 
DATETIME_DIFF({End Date}, {Start Date}, 'days'), 
DATETIME_DIFF(TODAY(), {Start Date}, 'days')
) 

Screenshot 2019-08-19 at 16.28.55.png

JB

Here’s another way to write it, putting the IF function inside a single DATETIME_DIFF:

DATETIME_DIFF(IF({End Date}, {End Date}, TODAY()), {Start Date}, "days")

Works perfectly!
thank you for your help.

Matt