Auto checkbox problem
Nat O
✭✭✭
Hi, I am using these two formulas to auto check a box.
=IF([Column Title1]@row = "Word", 1)
=IF(ISDATE([Column Title2]@row),1)
Both work individually, but i am having trouble nesting them and making them work together.
I need the check box column formula to check for a word (single select dropdown) in one column and a date in another column and if both there; check the box.
Any suggestions?
Tags:
Best Answer
-
You need to use the AND logical function to test both the conditions.
IF(AND( [Column Title1]@row ="Word", ISDATE([Column Title2]@row) ),1,0)
Answers
-
You need to use the AND logical function to test both the conditions.
IF(AND( [Column Title1]@row ="Word", ISDATE([Column Title2]@row) ),1,0)
-
Yes! thanks, that's perfect.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.5K Get Help
- 448 Global Discussions
- 145 Industry Talk
- 481 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 152 Just for fun
- 73 Community Job Board
- 492 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 304 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!