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
greg777greg777 

Validation rule for Event Subject field

GeorgeTrommelenGeorgeTrommelen
Just put this in a Validation rule in events and activate is.
 
 
NOT(OR(
Subject = "Subject1",
Subject = "Subject2",
Subject = "Subject3"))
 
Regards,
George
ddegradoddegrado

Thank you this really helped! Now how do we avoid having to put all of the picklist values in here? Is there a way to just say that any given picklist value that exists for Subject is acceptable? What if our picklists change from time to time and are 50 - 100 values?

 

Thanks again for the help!