Hello,
I have a start and end date for planned work. I'd like to see to show in a column the amount of days remaining on the project.
The issue I run into with most formulas is if the start and end are in the future, the counts are all off, and I'd like it to not record anything if the end is in the past.
I was using this formula to get the days remaining, but it doesn't take into account all the specifics I need.
=IFERROR(NETWORKDAYS([Planned Work End]1, TODAY()) * -1, "")
I'd like it to only show for ones where the Planned Work End is in the future, and show the amount of days between start and end, for projects where the start is in the future.