Table footer
Adding fixed custom calculations in the footer of an online spreadsheet.
Source code
<html> <script src="https://bossanova.uk/jspreadsheet/v4/jexcel.js"></script> <script src="https://jsuites.net/v4/jsuites.js"></script> <link rel="stylesheet" href="https://jsuites.net/v4/jsuites.css" type="text/css" /> <link rel="stylesheet" href="https://bossanova.uk/jspreadsheet/v4/jexcel.css" type="text/css" /> <div id="spreadsheet"></div> <script> var data = [ ['Cheese', 10, 6.00, "=B1*C1"], ['Apples', 5, 4.00, "=B2*C2"], ['Carrots', 5, 1.00, "=B3*C3"], ['Oranges', 6, 2.00, "=B4*C4"], ]; // A custom method to SUM all the cells in the current column var SUMCOL = function(instance, columnId) { var total = 0; for (var j = 0; j < instance.options.data.length; j++) { if (Number(instance.records[j][columnId].innerHTML)) { total += Number(instance.records[j][columnId].innerHTML); } } return total; } var table = jspreadsheet(document.getElementById('spreadsheet'), { data:data, minDimensions: [4,10], columnDrag:true, footers: [['Total','=SUMCOL(TABLE(), 1)','=SUMCOL(TABLE(), 2)','=SUMCOL(TABLE(), 3)']], columns: [{ width:'200px', }] }); </script> </html>