Forum Discussion

Truecharv's avatar
Truecharv
New Member
3 years ago
Solved

Date Calculation between three dates

My data set has a creation date, reopend date, and closed date column. Not all lines have a reopen date. I am trying to create a column that will calculate the age based on the reopend date if it has...
  • Truecharv's avatar
    Truecharv
    3 years ago

    This formula did not quite work but it was a great help to start testing. I was able to get the code to work with the following:

     

    Age =

    IF( 

    [Reopen] <> BLANK (),

    [Closed date]-[Reopen date],

    [Closed date]-[created date])