fulcrumapp / fulcrum-expressions

Fulcrum expressions engine
http://developer.fulcrumapp.com/expressions/intro/
5 stars 0 forks source link

MAXA() returns null #2

Closed colemanm closed 9 years ago

colemanm commented 9 years ago

The following function returns null, but should return 5. Should convert text strings to 0 for the sake of the MAX comparison.

MAXA(3, 4, 5, "Fulcrum")
colemanm commented 9 years ago

Fixed with 7065006bccd4f9d9c73c3a26e93f3a179bda567d. Actually accepts an array of values, like MAXA([3, 4, 5, "Fulcrum"]). If used that way, it works.