footer total for calculated column
footer total for calculated column
I have a dataset that contains numbers for each month of the year, so of course there are 12 columns.
My table contains a 13th column to hold the sum of each month.
The entire table contains 8 years of data.
In the footer I want to total all of those year totals (the column 13 numbers), but since those values are computed, they are not part of data().
Is there a way to total a column whose cell values are not part of data()?
This question has an accepted answers - jump to answer
Answers
Sounds like you are using
columns.render
for these columns so you will need to usecells().render()
to access the data. Take a look at this example from this thread to see how.Kevin
Kevin, that was just what I needed. The example was great. Thanks! The responsive support on this forum is top notch!