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
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!