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
ScofzScofz 

Make Fields Required Based on Value of another field in Tasks

I want to be able to make 3 fields (Email/Name/Related To) required fields, but only if the Subject field contains a certain value, lets say "Code"

 

Can anyone please give me a kick-start as to how i might achieve this.

 

many thanks

Mark

JimmyWebexJimmyWebex

how about this...

 

AND (Subject = "Code", ISBLANK( WhatId))

 

AND (Subject = "Code", ISBLANK( WhoId))

 

AND (Subject = "Code", ISBLANK( Email))