Last active
March 6, 2019 22:58
-
-
Save pdbartsch/235b75b8d917319d7456887e49500cdf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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