Need another expert on formula?
Scenario,
need to edit an existing column formula to exclude any $$$ (greater or less than 0) scenarios for a specific column value from a different column ("TYPE") is "Cost Avoidance" or "Optimization" so it does not produce a "YES".
So for e.g.
The Column "Type" has the following values:
New Contract
NPR
Cost Avoidance
Optimization
The Column "Implemented Top 10" formula:
=IF([IMP $]@row > 0, "YES", "")
must produce a "YES" for any row greater than "0" - no matter what "Type" value.
I need to produce a "YES" for any row greater than "0" but exclude those $$$ (negative or positive) dollar amounts with a "Type" value that is "Cost Avoidance" or "Optimization".
let me know if that made sense or is possible?
(
see attachments)
Best Answer
-
Give this a try:
=IF(AND(Type@row <> "Cost Avoidance", Type@row <> "Optimization", [IMP $]@row > 0, Status@row <> "Dropped", Status@row <> "Hold"), "YES")
Answers
-
Try this.
=IF(OR(Type@row = "Optimization", Type@row = "Cost Avoidance"), "", IF([IMP $]@row > 0, "Yes", ""))
-
Oops, I forgot to factor in another couple values from an additional column that i need to factor in:
In addition to the scenario above, I also need to factor in ONLY those rows with a "Status" of:
Active
Completed
Validated
(see attachment)…
-
Give this a try:
=IF(AND(Type@row <> "Cost Avoidance", Type@row <> "Optimization", [IMP $]@row > 0, Status@row <> "Dropped", Status@row <> "Hold"), "YES")
-
You both came through for me…yes it worked…🤩…and thanks once again Paul!!!!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!