Hello,
I am new to PowerApps so please bare with me. In my Portal I have a Web Template where I am using FetchXML to get data. I have a table (screenshot attached) and am trying to get the Subtotal of all values in the Total column.
My Total column looks like this:
<td class="linetotal">{% assign linetotal = routineCount.results.entities.size | times: {{result.obj_price | format: "c" }} %}
{{linetotal}}</td>
I have spent some time trying to get the total sum using Liquid & JS/JQ but nothing seems to work. Any help or tips would be appreciated!
Solved! Go to Solution.
Hi @KellyMcLaren ,
You can just create another variable and add to it your linetotal after each time you calculate it.
Hi @KellyMcLaren ,
You can just create another variable and add to it your linetotal after each time you calculate it.