Obviously, the below isn't going to work, but this was my starting point. Any suggestions?
ISCHANGED( CRM__c ) ||
ISCHANGED( Target_Market__c ) ||
ISCHANGED( Customer_Class_Level_1__c ) ||
ISCHANGED( Customer_Class_Level_2__c ) ||
ISCHANGED( Marketing_Team_Size__c )
답변 10개
My bad, Alicia. I think we've got way off-track here =) When you said "Obviously, the below isn't going to work", did you even try it? I realize now that ISCHANGED(TEXT()) is definitely not going to work, because ISCHANGED takes in field names as arguments, not text. So I think your original formula should work, and the more readable option of
OR(
ISCHANGED(CRM__c) ,
ISCHANGED(Target_Market__c) ,
ISCHANGED(Customer_Class_Level_1__c) ,
ISCHANGED(Customer_Class_Level_2__c),
ISCHANGED(Marketing_Team_Size__c)
)
should as well.