I created a simple table with custom fields.
How can I have at the end of the table a numeric value calculating sum results of numeric entries on a single column?
<html>
<head>
<style type=“text/css”>
table, td, th
{
border:1px solid green;
}
th
{
background-color:green;
color:white;
}
</style>
</head>
<body>
<table>
<tr>
<th>Socio</th>
<th>Data</th>
<th>Causale</th>
<th>Descrizione</th>
<th>rif.</th>
<th>conto</th>
<th>importo</th>
</tr>
{exp:channel:entries channel="movimenti" search:ragione_sociale="danny" dynamic=“no”}
<tr>
<td>{ragione_sociale}</td>
<td>{data_reg}</td>
<td>{causale}</td>
<td>{descrizione}</td>
<td>{rif_documento}</td>
<td>{conto}</td>
<td>{importo}</td>
</tr>
{/exp:channel:entries}
</table>
</body>
</html>