function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Glenn Nyhan 91Glenn Nyhan 91 

Workflow Rule Formula Error - Syntax error. Missing ')'

I'm working on a Workflow Rule for a picklist value to trigger an out date of NOW() in a Date/Time field but I'm getting this error and can't figure out whats wrong:

IF(ISPICKVAL(Pre_Ground_Break_Ready_to_Send__c, "Yes"), Now()

Error: Syntax error. Missing ')'

Anybody have and idea why this isn't working. I've tried several things to no avail. 
Best Answer chosen by Glenn Nyhan 91
kumud thakur 20kumud thakur 20
Can you try with this one :
IF(ISPICKVAL(Pre_Ground_Break_Ready_to_Send__c, "Yes"), Now(),null)
Thanks

All Answers

kumud thakur 20kumud thakur 20
Can you try with this one :
IF(ISPICKVAL(Pre_Ground_Break_Ready_to_Send__c, "Yes"), Now(),null)
Thanks
This was selected as the best answer
Raj VakatiRaj Vakati
try this
 
IF(ISPICKVAL(Pre_Ground_Break_Ready_to_Send__c, "Yes"), Now(),null)

 
Glenn Nyhan 91Glenn Nyhan 91
Hi Raj,

Thanks for the help, much appreciated! I'll give this a try and let you know how it goes.

Warmly,

Glenn
Glenn Nyhan 91Glenn Nyhan 91
Hi Ray,

This worked perfectly! Thanks for helping me out, much appreciated!

Best,

Glenn
Glenn Nyhan 91Glenn Nyhan 91
I should say thanks to both of you for the correct answer. Again I very much appreciate your engagement with my issue. Thanks again.