Help with formula
I am working to port a process that is managed in Excel into Smartsheet.
I want to created a formula that will check two cells in the row, if they both show filled, I want to check the checkbox. If either or both are any other status, I want the checkbox to remain unchecked.
I want to convert this to a column formula. When I enter this into the cell, it works as expected:
=IF([Status One]1="Filled", IF([Status Two]1 = "Filled", 1, 0))
However, that formula will not convert to a column formula. When I change it to the formula below, I get #Invalid Operation.
=IF([Status One]:[Status One]="Filled", IF([Status Two]:[Status Two] = "Filled", 1, 0))
Can someone point out my error?
Best Answer
-
Column formulas can't have row number references. Use @row instead:
=IF([Status One]@row="Filled", IF([Status Two]@row = "Filled", 1, 0))
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
Answers
-
Column formulas can't have row number references. Use @row instead:
=IF([Status One]@row="Filled", IF([Status Two]@row = "Filled", 1, 0))
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
-
Thank you, @Jeff_Reisman
Much appreciated!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64K Get Help
- 412 Global Discussions
- 220 Industry Talk
- 459 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 138 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!