Summer Sun
08/26/2025, 3:38 AMJim Schweder
08/29/2025, 2:32 PM<#assign tax_total = 0 />
<#list your list >
<#if grouped_detail.item?contains("%") >
<#assign tax_total += grouped_detail.amount />
<#continue />
</#if>
The <#continue /> skips the rest of the code in the loop and starts with a new record.
You can print tax_total in your summary.
Use https://freemarker.apache.org/docs/index.html for freemarker references.Marissa Nolan
09/10/2025, 5:35 PMJim Schweder
09/12/2025, 2:16 PM