Below is an example of what we've tried to do, we thought maybe a NOT(ISCHANGED(iSell__OSKeyID__c)) would help us but it still seems to be hitting the validation rule. Any help would be HUGELY appreciated :)
VAL Rule example:
AND (
NOT CONTAINS($Profile.Name, "SFtools"),
NOT CONTAINS($Profile.Name, "API Marketo"),
NOT $Setup.Valskip__c.Valskip__c, /* Code exclusion on VAL rule*/
NOT ISCHANGED(OwnerId), /* Exclude VAL on owner change*/
LEFT(OwnerId, 3) <> "00Q",
ISPICKVAL(Country_Code__c, "AU - Australia"),
NOT(ISCHANGED(iSell__OSKeyID__c)), /*Avention Exclusion*/
NOT(OR(
UPPER(State)="NSW",UPPER(State)="ACT",
UPPER(State)="TAS",UPPER(State)="NT",UPPER(State)="VIC",
UPPER(State)="QLD",UPPER(State)="SA",UPPER(State)="WA")),
NOT ISPICKVAL(LeadSource, "Web to Lead"),
NOT ISPICKVAL(Lead_Source_Category__c, "Web")
)
답변 4개
Thank you! I'm racking my brain and it's super frustrating!