What am I doing wrong
<table class="table table-hover">
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Field</th>
</tr>
</thead>
<tbody is="dmx-repeat" dmx-generator="bs5table" dmx-bind:repeat="sc_get_clients.data.qry_clients" id="tableRepeat5">
<tr tabindex="0" dmx-on:contextmenu="notifies_main.info('context menus')">
<td dmx-text="name"></td>
<td dmx-text="email"></td>
<td dmx-text="field_id"></td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3">Total Reach Number: {{tableRepeat5.items.sum('$value.Field.toNumber()')}}</td>
</tr>
</tfoot>
</table>