Skip to main content
Solved

Is there a way to have a formula tell you if a deadline is upcoming instead of just before and after?

  • June 1, 2020
  • 10 replies
  • 94 views

Forum|alt.badge.img+5

Hi all,

I am trying to format a field to show whether a deadline is “On Time” (before deadline due date), “At Risk” (same day as deadline due date) and “Late” (past deadline due date/time).

Is this possible? I keep getting lost in my nested if statements and when I add another component, I am getting blank records.

Thanks,
Lauren

Best answer by Kamille_Parks11

I was able to make this work to show “On Time” and “Late”, but the “At Risk” is what I am still looking for and having trouble with. I think it might have to do with the fact that I am using a Date Field with a time as the subject for the “IF” and I only want the time to come in to factor with Late. For instance, if the due DATE is before today, then it would show “On Time”, if the due DATE is today then it would show “At Risk” and if the due DATE/TIME is after now then it would show “LATE”.


Try this:

IF({Deadline Due Date} < NOW(), "Late", IF(IS_SAME({Deadline Due Date}, TODAY(), 'day'), "At Risk", "On Time"))

10 replies

Kamille_Parks11
Forum|alt.badge.img+27

Try a formula like this one:

IF({Deadline Due Date} > TODAY(), "On Time", IF(Birthday < TODAY(), "Late", "At Risk"))

Let me know if this works for you. If it did, please mark it as the solution.


Forum|alt.badge.img+5
  • Author
  • Known Participant
  • 10 replies
  • June 1, 2020

Try a formula like this one:

IF({Deadline Due Date} > TODAY(), "On Time", IF(Birthday < TODAY(), "Late", "At Risk"))

Let me know if this works for you. If it did, please mark it as the solution.


I was able to make this work to show “On Time” and “Late”, but the “At Risk” is what I am still looking for and having trouble with. I think it might have to do with the fact that I am using a Date Field with a time as the subject for the “IF” and I only want the time to come in to factor with Late. For instance, if the due DATE is before today, then it would show “On Time”, if the due DATE is today then it would show “At Risk” and if the due DATE/TIME is after now then it would show “LATE”.


Kamille_Parks11
Forum|alt.badge.img+27
  • Brainy
  • 2679 replies
  • Answer
  • June 1, 2020

I was able to make this work to show “On Time” and “Late”, but the “At Risk” is what I am still looking for and having trouble with. I think it might have to do with the fact that I am using a Date Field with a time as the subject for the “IF” and I only want the time to come in to factor with Late. For instance, if the due DATE is before today, then it would show “On Time”, if the due DATE is today then it would show “At Risk” and if the due DATE/TIME is after now then it would show “LATE”.


Try this:

IF({Deadline Due Date} < NOW(), "Late", IF(IS_SAME({Deadline Due Date}, TODAY(), 'day'), "At Risk", "On Time"))


Forum|alt.badge.img+5
  • Author
  • Known Participant
  • 10 replies
  • June 1, 2020

Try this:

IF({Deadline Due Date} < NOW(), "Late", IF(IS_SAME({Deadline Due Date}, TODAY(), 'day'), "At Risk", "On Time"))


This seems to have worked! Thank you so much! I am going to make this as a solution, but I have a question -

When dealing with dates and < or > - is the further down the calendar we go make the date “greater”? I think that is where I was getting tied up because I am not familiar with how the dates greater than and less than work.


Kamille_Parks11
Forum|alt.badge.img+27

Yes. Think of it this way: the further a date is from the beginning of time, the “greater” a date is. More time has passed, therefore the value of that date is greater than the days that came before.

Alternatively, you could have also used IS_BEFORE() or IS_AFTER() instead of < or >.


Forum|alt.badge.img+5
  • Author
  • Known Participant
  • 10 replies
  • June 1, 2020

Yes. Think of it this way: the further a date is from the beginning of time, the “greater” a date is. More time has passed, therefore the value of that date is greater than the days that came before.

Alternatively, you could have also used IS_BEFORE() or IS_AFTER() instead of < or >.


Thank you for your help with this along with this explanation - it is greatly appreciated and has helped understand calculating date more in Airtable!


kuovonne
Forum|alt.badge.img+29
  • Brainy
  • 6009 replies
  • June 2, 2020

Yes, it is really easy to get lost in nested statements.

I find it easier if I use an external editor and write the formula with multiple lines:

IF(
  condition-1,
  first-true-result,
  IF(
    condition-2,
    second-true-result,
    IF(
      condition-3,
      third-true-result,
      final-else-result
    )
  )
)

This formatting makes it easier to spot errors:

  • each IF statement and its closing `) are vertically aligned.
  • each IF statement has exactly three lines at the next level of indent that match the three parameters to the IF statement.
  • each line that represents a parameter ends with a , unless the following line is a )

For very complex formulas, I use a code editor with automatic bracket matching.


Forum|alt.badge.img+5
  • Author
  • Known Participant
  • 10 replies
  • June 2, 2020

Yes, it is really easy to get lost in nested statements.

I find it easier if I use an external editor and write the formula with multiple lines:

IF(
  condition-1,
  first-true-result,
  IF(
    condition-2,
    second-true-result,
    IF(
      condition-3,
      third-true-result,
      final-else-result
    )
  )
)

This formatting makes it easier to spot errors:

  • each IF statement and its closing `) are vertically aligned.
  • each IF statement has exactly three lines at the next level of indent that match the three parameters to the IF statement.
  • each line that represents a parameter ends with a , unless the following line is a )

For very complex formulas, I use a code editor with automatic bracket matching.


I sometimes find the vertical formulas hard to follow but it depends on the formula and how complex it is.

If you don’t mind me asking, what external editor do you use to figure out these formulas?


kuovonne
Forum|alt.badge.img+29
  • Brainy
  • 6009 replies
  • June 2, 2020

I sometimes find the vertical formulas hard to follow but it depends on the formula and how complex it is.

If you don’t mind me asking, what external editor do you use to figure out these formulas?


Vertical formulas can take a bit getting used to. Simple formulas can be easier to understand if they are written horizontally. However, the more complex a formula is, the more I find that writing them vertically is necessary for me to keep track of all the pieces.

Plus, there are multiple ways of writing things vertically. For example, some people write an if statement with the condition on the same line as the if( part.

Just use whatever method works for you. I only suggested this method because you mentioned getting lost in nested if statements.

I write simple (one line) formulas directly in the Airtable editor. I write short, multi-line formulas in whatever text editor I have handy (often the very basic Notepad that comes with Windows because it opens quickly). I write long, complex formulas in the free code editor Atom, but any code editor would work.


Forum|alt.badge.img+5
  • Author
  • Known Participant
  • 10 replies
  • June 3, 2020

Vertical formulas can take a bit getting used to. Simple formulas can be easier to understand if they are written horizontally. However, the more complex a formula is, the more I find that writing them vertically is necessary for me to keep track of all the pieces.

Plus, there are multiple ways of writing things vertically. For example, some people write an if statement with the condition on the same line as the if( part.

Just use whatever method works for you. I only suggested this method because you mentioned getting lost in nested if statements.

I write simple (one line) formulas directly in the Airtable editor. I write short, multi-line formulas in whatever text editor I have handy (often the very basic Notepad that comes with Windows because it opens quickly). I write long, complex formulas in the free code editor Atom, but any code editor would work.


Thank you for this information! I will check these out and see which works best for me to understand formulas better!