Prevent records from being saved when the Description field does not start with "VIP Issue" #inSalesforce

Prevent records from being saved when the Description field does not start with "VIP Issue" #inSalesforce


Create a validation rule on the Object

use formula like

NOT(REGEX(Description, '^VIP Issue.*'))


Visual: https://www.youtube.com/watch?v=CMEqSFhwo-0


Comments