Comparison between due dates and completed date to determine on time task completion

Hello Coda community I have the the following questions

  1. When a project is completed on or before the due date the check box should be checked, how do i do that.
  2. I need a formula where it can tell the difference between ‘due date’ & ‘completed date’.
1 Like

@VINAY_B_C,

  1. the formula for the ON TIME column should be
  [COMPLETED ON] <= [DUE DATE]

the less-than-or-equals operator ‘<=’ returns either TRUE or FALSE and stores that in the column
which is used to set the Check-Box accordingly

  1. the formula for showing the difference between the DUE DATE and the COMPLETED DATE is a simple subtraction…
  [COMPLETED DATE] - [DUE DATE]

because dates are stored as decimal numbers, and the integer part is the number of days since the base-date (which i think is 01 Jan 1970) - but we only want the integer part of the result, so we can use Floor(1) to drop the fractional part (the 1 implies to round down to the nearest integer).

BTW: the fractional part of the date value encodes the hours, minutes and seconds, so we drop those

But we also need to allow for the case where the COMPLETED DATE is not yet entered, so we use an If() function for that to return a blank result in that case. In the If() function, an empty cell is FALSE, otherwise it is TRUE

So the final formula might be something like this…

If( [COMPLETED ON] ,
  Floor( [COMPLETED ON] - [DUE DATE], 1),
  ""
)

respect
max

1 Like

Hi Max, thanks for the helping out.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.