Incorrect Argument Set: Nested IF Formula with 3 Logic Statements
I have the following formula that works and I would like to add one more criteria, if Bid? = "Bid" then return 100% in %Complete Column
This is the original working formula:
=IF([Include in Estimate]@row = 0, 1, IF(OR(NOT(ISBLANK(Units@row)), NOT(ISBLANK([Fixed Cost]@row))), 0.25, 0))
This is my edit which returns the Incorrect Argument Set
=IF([Include in Estimate]@row = 0, 1, IF(OR(NOT(ISBLANK(Units@row)), NOT(ISBLANK([Fixed Cost]@row))), 0.25, 0), IF([Bid?]@row = "bid", 1))
Answers
-
Hi Lisa,
Do you want this to be the last thing that the formula looks at? Since logic formulas read left-to-right, it will stop once it finds a correct match... so with your order it would only look at the Bid? column if your previous two statements aren't met. Is that what you want?
If so, we just need to adjust the 0) to be at the very end of your formula. Right now you've closed off your statement then added on another IF - we need all 3 IF's to be open until the very end. Try this:
=IF([Include in Estimate]@row = 0, 1, IF(OR(NOT(ISBLANK(Units@row)), NOT(ISBLANK([Fixed Cost]@row))), 0.25, IF([Bid?]@row = "bid", 1, 0)))
Let me know if this works!
Cheers,
Genevieve
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63K Get Help
- 380 Global Discussions
- 212 Industry Talk
- 442 Announcements
- 4.6K Ideas & Feature Requests
- 140 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 305 Events
- 34 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!