How to exclude a column formula on certain rows in a specific status
I am trying to capture when requests are on time vs past due in the 'Current Status' Column, and also trying to capture how many days since a request was submitted in the 'Days since Req Created'. I have those formulas figured out. However, I don't want those to run when the 'progress' is completed. So how do I add that in my Formulas?
Here is my current =SUMIF formula for counting the says since request was created:
=SUMIF(Progress@row, <>"Completed", TODAY() - [Date Request Created]@row)
I would like it to be blank or say N/A if the progress is 'completed'
Similar for my current =IF formula in Current status=
=IF(([Days since Req Created]@row) >= 2, "Past Due", IF([Days since Req Created]@row < 2, "On Time"))
How do I make the result blank or say N/A if the progress is 'completed'?
Answers
-
You can just nest =IF(Progress@row = "Completed", "N/A", IF(([Days since Req Created]@row) >= 2, "Past Due", IF([Days since Req Created]@row < 2, "On Time")))
Hope that helps!
-
=IF([Progress]@row = "Completed", "", NETDAYS([Date Request Created]@row, TODAY()))
=IF([Progress]@row = "Completed", "", IF([Days since Req Created]@row >= 2, "Past Due", IF([Days since Req Created]@row < 2, "On Time")))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.7K Get Help
- 405 Global Discussions
- 216 Industry Talk
- 456 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 297 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!