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
Rung41Rung41 

Task validation rule

I have the following task validation rule to prevent a text box from being populated unless a specific picklist value is specified. However, even if the text box is blank, the validation rule still fires and displays the error. Help!


AND(
NOT(ISPICKVAL(Status,"Completed")),
NOT(ISNULL(Description)))
SFDC_DeveloperSFDC_Developer
Hi Rung41,

You need to change your validation rule to 
 
AND( 
ISPICKVAL(Status,"Completed"), 
NOT(ISNULL( Description )))

 
Rung41Rung41
I tired that. The user can fill in the text box even though the picklist is not set to Completed.
Rung41Rung41
Ok..I had to change the "ISNULL" to "ISBLANK"