I have created the following formula to calculate the remaining duration of a task:
=IF(AND([Start Date]@row <= TODAY(), [End Date]@row >= TODAY()), NETWORKDAYS(TODAY(),[End Date]@row), 0)
I would like to be able to add an additional components that allows me to return different values if the Start Date and End Date are in the past. This is what I drafted that is getting an #UNPARSEABLE error:
=IF(AND([Start Date]@row <= TODAY(), [End Date]@row >= TODAY()), NETWORKDAYS(TODAY(),[End Date]@row), 0), IF(AND([Start Date]@row<TODAY(), [End Date]@row<TODAY), "0","")
The original formula above works fine, it's just the additional IF statement that is erroring out. I was thinking it should be an OR statement but the return values would be different.
Thank you in advance for your assistance.