Rollup on a javascript column to do more than count and count unique

I created a javascript column that returns a number. Interestingly I can’t do maximum, average etc… operations on a rollup of it. I was hoping to do a rollup that figures out the max value for the series.
Is this a known limitation? Perhaps there’s a way to do this and I’m just missing something.

The JavaScript column returns a string, so those additional rollup options aren’t available.
However, you can convert the JavaScript output to a number using a math column (multiply it by 1), and then do your rollup on that column.

1 Like

Yup… that did the trick

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.