Salesforce Dictionary - Free Salesforce GlossarySalesforce Dictionary
All snippets
SOQL

SOQL: localised picklist values with toLabel()

Returns the translated label for a picklist instead of the raw API value. Useful when the running user has a non-English language set.

SELECT Id, Name, toLabel(StageName), Amount
FROM Opportunity
WHERE CloseDate = THIS_QUARTER
  AND IsClosed = false
ORDER BY Amount DESC NULLS LAST
LIMIT 50

Notes

Related dictionary terms

More snippets