Formula Help
I need to calculate the NETWORKDAYS in a sheet but also need to make the formula use todays date if the cell is blank. This is the formula that I have now but it is counting weekends and holidays in the calculation and I need it to omit weekends and holidays.
=IF(ISBLANK([Booked Date]1), TODAY() - [*Received Date]1, [Booked Date]1 - [*Received Date]1)
Answers
-
Try this:
=IF(ISBLANK([Booked Date]@row), NETWORKDAYS([*Recieved Date]@row, Today()), Networkdays([*Recieved Date]@row, [Booked Date]@row))
You can add specific holiday dates based on the instructions here:
-
That worked! Thank you for your help!
-
Awesome. Glad I could help you out!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 473 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!