I have a column the calculates the number of days between 2 dates, which is fine.
=[Arch Prelims]@row - [FP Arch Engagement ]@row (gives me a number)
But I don't want to do the calculation if the difference is a negative number. There are few instances where the result would be a negative number (very few) I don't want to include values for negative numbers. I tried using an IF statement results in a #UNPARSEABLE error.
=IF([Arch Prelims]@row -[FP Arch Engagement]@row > 0, [Arch Prelims]@row - [FP Arch Engagement]@row, 0)
both of the fields are Dates.
Help!