Add or Subtract a value from a NETDAYS formula
Here is the formula that I have. It works fine except it is one day off:
=IFERROR(NETDAYS([Completion Date]@row, [Due Date]@row), "")
It calculates correctly but I need to adjust by one day:
- If the returned value is equal to or more than 1, I want to subtract 1 (-1)
- If the returned value is equal to or less than -1, I want to add 1 (+1)
Thanks in advance.
Best Answer
-
Hi Justin
I hope you are doing well,
You can use this formula based on your needs.
=IFERROR(IF(NETDAYS([Completion Date]@row, [Due Date]@row) >= 1, NETDAYS([Completion Date]@row, [Due Date]@row) - 1, IF(NETDAYS([Completion Date]@row, [Due Date]@row) <= -1, NETDAYS([Completion Date]@row, [Due Date]@row) + 1, "")), "")
I hope this is useful to you, Have a Good Day.
Thanks
Shubham Umale, Smartsheet Engineer, Ignatiuz Software
Answers
-
Hi Justin
I hope you are doing well,
You can use this formula based on your needs.
=IFERROR(IF(NETDAYS([Completion Date]@row, [Due Date]@row) >= 1, NETDAYS([Completion Date]@row, [Due Date]@row) - 1, IF(NETDAYS([Completion Date]@row, [Due Date]@row) <= -1, NETDAYS([Completion Date]@row, [Due Date]@row) + 1, "")), "")
I hope this is useful to you, Have a Good Day.
Thanks
Shubham Umale, Smartsheet Engineer, Ignatiuz Software
-
It worked perfectly. Thank you.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!