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
Praveen Medishetty07819958721518091Praveen Medishetty07819958721518091 

Help me with below Validation

Hi, How to write below validation rule:
If TYPE is 'PROSPECT' and SLA Serial Number is '1234' then SLA is required.
Suresh RaghuramSuresh Raghuram
If(Type =' ProsPect' && SLASerialNumber != null, True, False);
VictorFelisbinoVictorFelisbino
is type a picklist value?
if so you will need to do something like
AND(
    If(ISPICKVAL( type,"PROSPECT" ) && SLASerialNumber == '1234', True, False)
)