I have a text component and need to find the sum of a column in a table. I have tried the following but no results so far. Any ideas?
{{_.sum(formatDataAsObject(tableLocations.data).deiceprice)}}
{{_.sum(tableLocations.data['deiceprice'])}}
{{ _.sumBy(tableLocations.data, 'deiceprice') }}
{{ _.sum(tableLocations.data.map(item => item.deiceprice)) }}```