Skip to content

Instantly share code, notes, and snippets.

@pdbartsch
Last active March 6, 2019 22:58
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 pdbartsch/235b75b8d917319d7456887e49500cdf to your computer and use it in GitHub Desktop.
Save pdbartsch/235b75b8d917319d7456887e49500cdf to your computer and use it in GitHub Desktop.
# find the minimum value across a list of fields:
# expression:
min([!field1!, !field2!, !field3!])
# find the maximum value across a list of fields:
# expression:
max([!field1!, !field2!, !field3!])
# find the sum of all values from a list of fields:
# expression:
sum([!field1!, !field2!, !field3!])
# find the average value from a list of fields:
# expression:
sum([!field1!, !field2!, !field3!]) / len([!field1!, !field2!, !field3!])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment