Can anyone let me know if im doing this correctly?Need a validation rule that prevents a Sales user from updating a picklist to a Certain Value on a Certain Record Type.For this excample, i want to prevent Sales User from updating picklist to Value1 (and allow all other values for them) for that record type(AND( $User.ProfileId <> "Sales User",,$RecordType.Name = "Record Type Name",ISCHANGED(Status__c),NOT(ISPICKVAL(Status__c, 'Value2')),NOT(ISPICKVAL(Status__c, 'Value3')),NOT(ISPICKVAL(Status__c, 'Value4')),))