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
NalesNales 

Task Field Type Validation Rule

When Task Field Type “Outgoing Call” is selected, then validate that checkbox “Hit” or “Miss” is selected.

 

Dependencies between the 2 fields won't work. Thanks

alvatsealvatse
Have you tried to build the formula for the validation rule? I'd think it's fairly easy. If you post your formula, the community can help you troubleshoot.
Nalec7Nalec7

Here is what is in place. Created a Hit and Miss Checkbox. No syntax errors however no validation is taking place when users select "Outgoing Call" for their event activity.

 

 

AND(
ISPICKVAL(Type,"Outgoing Call"),
OR(
Hit__c,
Miss__c
)
)