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
- Customer Resources
- 66.8K Get Help
- 439 Global Discussions
- 152 Industry Talk
- 497 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 510 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!