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
varun_Is_Therevarun_Is_There 

problem in following validation

"Salary cannot be processed for inactive employees.”
Best Answer chosen by varun_Is_There
Dayakar.DDayakar.D
Hi varun,
If you don't have field active(check box) on employee Object, create it and then create salary field(Farmula type)
and use the below formula
IF( Active__c, Salary(place salary field where it is calculated) , 0)
Please let me Know, if it fits for your criteria.

Best Regards,
Dayakar.D