Skip to main content
Solved

Date formula not working ....

  • October 4, 2023
  • 3 replies
  • 31 views

Forum|alt.badge.img+4

I don't understand why this formula isn't working ... I can only think it has something to do with the Now() calculation.

IF({Quote Status}="Selected" And(Now()) > {Scheduled Date},
     {Scheduled Date},
     IF({Quote Status} = "Fulfilled",
          {Adj. Fulfilled Date},
          {Dummy Date})
   )

 

Any thoughts?

 

 

Best answer by Sho

Here's how to use AND in Airtable.

IF( AND( {Quote Status}="Selected", Now() > {Scheduled Date} ), {Scheduled Date}, IF({Quote Status} = "Fulfilled", {Adj. Fulfilled Date}, {Dummy Date} ) )

3 replies

Forum|alt.badge.img+4
  • Author
  • Participating Frequently
  • October 4, 2023

I did check the time zone in the date fields and they are all the same.


Forum|alt.badge.img+21
  • Inspiring
  • Answer
  • October 4, 2023

Here's how to use AND in Airtable.

IF( AND( {Quote Status}="Selected", Now() > {Scheduled Date} ), {Scheduled Date}, IF({Quote Status} = "Fulfilled", {Adj. Fulfilled Date}, {Dummy Date} ) )

Forum|alt.badge.img+4
  • Author
  • Participating Frequently
  • October 4, 2023

Here's how to use AND in Airtable.

IF( AND( {Quote Status}="Selected", Now() > {Scheduled Date} ), {Scheduled Date}, IF({Quote Status} = "Fulfilled", {Adj. Fulfilled Date}, {Dummy Date} ) )

Sho! Thank-you!
I would NEVER have solved it without your help.