Salesforce Dictionary - Free Salesforce GlossarySalesforce Dictionary
Salesforce Administrator
hard

How do you architect a multi-currency Salesforce org?

Multi-currency lets a single org transact in many currencies. Once enabled, you cannot turn it off — so the decision is one-way.

Setup:

  1. Enable Multi-Currency (Setup -> Company Information -> Activate Multiple Currencies). This is the irreversible step.
  2. Configure your corporate currency — the base currency all reports roll up to. Commonly USD or EUR.
  3. Add active currencies — each currency you transact in. ISO codes: USD, EUR, GBP, JPY, INR, etc.
  4. Set conversion rates — manual rates updated periodically, or Advanced Currency Management (ACM) for dated exchange rates that respect the rate that was effective when a record was created. ACM is essential for accurate historical reporting on multi-period deals.
  5. Decide who edits rates — typically Finance owns this. Admin sets up the permission and process.

Implications:

  • Every currency field on every object now carries the record's currency context. Each Opportunity, Account, etc., has a CurrencyIsoCode field and Salesforce stores both the local amount and the converted-to-corporate value.
  • Reports display in the user's personal currency, the record's currency, or the corporate currency depending on the report's Currency setting. Always set this deliberately.
  • Roll-Up Summary fields on amounts work, but the rollup is done in the parent's currency, with conversion applied per child record using the dated rate (if ACM) or the current static rate (if not).
  • Formula fields referencing currency need to handle conversion: a formula adding two currency fields converts to a single currency context first.
  • Integrations — every API write that includes a currency value must specify the CurrencyIsoCode or it defaults to corporate. Inbound integrations frequently miss this and silently store everything as the corporate currency.

Common mistakes:

  • Enabling without ACM, then realising rate fluctuations make historical reports wrong.
  • Reports built before multi-currency was enabled now show inconsistent values. Audit and rebuild.
  • Custom fields built as "Number" instead of "Currency" — they don't get converted, so manual logic is needed.

Why this answer works

Architectural-judgement question. Most admins haven't enabled multi-currency; senior candidates have. The "irreversible" point is the killer detail — anyone who's been close to the decision knows it. ACM, integrations, and reports are the three places it bites.

Follow-ups to expect

Related dictionary terms