How to avoid update to Case record when the Status is Working in Salesforce?
Validation Rule can be used to avoid update to Case record when the Status is Working. Validation Rule Formula:AND(ISPICKVAL( Status, 'Working' ),ISPICKVAL( PRIORVALUE( Status ), 'Working' ),NOT( ISNEW() ))Note:When the ....