Skip to content

Instantly share code, notes, and snippets.

@mattparlane
Created July 14, 2017 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattparlane/cf319c8df82407806a75c235469ab096 to your computer and use it in GitHub Desktop.
Save mattparlane/cf319c8df82407806a75c235469ab096 to your computer and use it in GitHub Desktop.
Set US/non-USD accounts to USD
Account[] accounts = [select Id from Account where Primary_Funding_Nation__r.Name = 'United States' and CurrencyIsoCode != 'USD' Limit 2000];
for (Account account : accounts)
account.CurrencyIsoCode = 'USD';
update accounts;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment