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
- 62.3K Get Help
- 364 Global Discussions
- 199 Industry Talk
- 428 Announcements
- 4.4K Ideas & Feature Requests
- 136 Brandfolder
- 127 Just for fun
- 128 Community Job Board
- 445 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!