I am trying to calculate days open between the request date and today and not count weekends however I want the count to start at 0, not 1. I am using the below formula but for everything with today as the request date, it is showing -2. Once it moves to tomorrow, the days open goes back to 1. How do I get rid of the -2?
=IF(ISBLANK([Complete Date]@row), NETWORKDAYS([Request Date]@row, TODAY() - 1), NETWORKDAYS([Request Date]@row, [Complete Date]@row))