Hi,
I am building an application that requires rollup to perform Sum on computed columns but the Glide Big table is not supporting it yet , Is there any alternate way to perform rollup-like functionality with Glide Big tables?
My app requires more than 25k Rows but without rollup how can I build sum for specific requirements?
You can use one or more joined list columns to fetch the non-computed values required to calculate the sum, and then pass those to a JavaScript column. This will work well for smaller subsets of data from a GBT, but if you need to sum over an entire table then you are better off pre-calculating the values and saving in non-computed columns.
2 Likes