Help with formula to check box based on specific criterion
Hi team - need your help.
I have a formula that computes the actual day between 2 dates (using NETWORKDAY) which returns a number in that column cell (days count).
I have a "helper" check box column next to that column cell that I need checked if the actual days is equal to or less than 10 days AND not 0 (or blank).
I've tried =IFERROR(IF([days counts]@row >0 =< 10, 1, 0),"") but it doesn't work nor does this throw an error (unparsable, etc)
Any ideas on how to go about this formula?
Thanks,
Jeff
Best Answer
-
You would need something more like this:
=IF(AND([days counts]@row>0, [days counts]@row<= 10), 1)
Answers
-
You would need something more like this:
=IF(AND([days counts]@row>0, [days counts]@row<= 10), 1)
-
@Paul Newcome - once again you come through!
Appreciate the assistance.
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.3K Get Help
- 364 Global Discussions
- 199 Industry Talk
- 428 Announcements
- 4.4K Ideas & Feature Requests
- 136 Brandfolder
- 127 Just for fun
- 128 Community Job Board
- 444 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!