Check Box if B/O Qty is > 0 OR Status column says "Backorder"
Hello,
I have been messing with this formula forever and I feel like I am just barely missing the mark, but cannot seem to figure it out nonetheless.
GOAL: If column: "B/O Quantity" = 0 check the box, OR IF column: "Status" says "Backorder" check the box. If both instances occur still check the box.
Okay, the formula I have so far is:
=IF(OR([Status]@row = "Backorder", ([B/O Quantity]@row = > 0, 1 0,)))
I am getting an incorrect syntax error. Thanks for the help!
Tags:
Answers
-
You are not closing your OR statement before moving to your True/False in your IF command.
=IF(OR(Status@row = "Backorder", [B/O Quantity]@row >= 0), 1, 0)
-
It is still saying "the column formula syntax is incorrect".
-
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
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!