Check date and flag On
I want to check by dates if you need to call the customer by activating the red flag, this red flag will serve as a pending call to a customer CRM spreadsheet.
It is working correctly, it happens that when the date cell is empty the flag is turned on, can you ignore when there is no date to compare?
=IF([Call in date]3 < (TODAY() - 30); 1; 0)
Answers
-
=IF(and(not(isblank([Call in date]3)),[Call in date]3 < (TODAY() - 30)); 1; 0)
try something like that.
-
#UNPARSEABLE
thanks my dear for the help but it doesn't work
-
Hi,
There was one parenthesis to much after -30.
Try something like this.
=IF(AND(NOT(ISBLANK([Call in date]@row)); [Call in date]@row < TODAY() -30); 1; 0)
The same version but with the below changes for your and others convenience.
=IF(AND(NOT(ISBLANK([Call in date]@row)), [Call in date]@row < TODAY() -30), 1, 0)
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
I hope that helps!
Have a fantastic day!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
-
Thank you very much, the problem was solved, were the commas.
I am from BRAZIL, it must have occurred because of this configuration.
-
@Técnica Engenharia Excellent! Happy to help!
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
-
Whoops. My bad. Glad you got it sorted.
-
I tried to use the formula in a common column and it works when I put in the column( % Complete column) to evaluate the progress of the error project
Project settings - Options / % Complete column
Thanks for help
-
@Técnica Engenharia Yes, % Complete can't have formulas when you're using dependencies.
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 495 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!