Skip to content

Instantly share code, notes, and snippets.

@sfdcale
Created July 12, 2018 02:22
Show Gist options
  • Save sfdcale/d4b4712f29fc0f1a88d30c8eb7134c9f to your computer and use it in GitHub Desktop.
Save sfdcale/d4b4712f29fc0f1a88d30c8eb7134c9f to your computer and use it in GitHub Desktop.
How to get all formula fields on a Object
Run the below query in Developer console with Toolin API checked.
SELECT QualifiedApiName,
IsCalculated
FROM FieldDefinition
WHERE EntityDefinition.QualifiedApiName ='Opportunity'
AND IsCalculated = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment