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
b.gonzalezb.gonzalez 

Help with a campaign workfow formula

Do you know how I can write a workflow formula for when the  Date_of_Last_Member_Added__c is changed on a specific campaign? The campaign name is "NA - Named Accounts Western Region Prospects"? Or should I use the campaign id?
Best Answer chosen by b.gonzalez
Harpreet On CloudHarpreet On Cloud
I would not use Campaign Id. Rather I would use Campaign Name, if I am sure that "NA - Named Accounts Western Region Prospects" will always return me 1 Campaign record.

For Date_Of_Last_Member_Added__c, you can use ISCHANGED (https://help.salesforce.com/apex/HTViewHelpDoc?id=customize_functions_i_z.htm&language=en_US#ISCHANGED) or select the case "Subsequently meet the criteria" while creating workflow, whichever suits you.

All Answers

Harpreet On CloudHarpreet On Cloud
I would not use Campaign Id. Rather I would use Campaign Name, if I am sure that "NA - Named Accounts Western Region Prospects" will always return me 1 Campaign record.

For Date_Of_Last_Member_Added__c, you can use ISCHANGED (https://help.salesforce.com/apex/HTViewHelpDoc?id=customize_functions_i_z.htm&language=en_US#ISCHANGED) or select the case "Subsequently meet the criteria" while creating workflow, whichever suits you.
This was selected as the best answer
b.gonzalezb.gonzalez
Thank you!