RE: Statements
I’m trying to print a statement during the month however I do not want the Carry Forward Balance to be included but just the Invoice Balances for the month. How do i fix this thanks
I believe this suiteanswer covers this topic. https://netsuite.custhelp.com/app/answers/detail/a_id/63398/
Thank you very much and how do i know which template the statement is using because i got plenty of templates with similar names

How are you printing the templates? If you go the customer record and hit generate statement it’ll show you the template on the right side. If you do it in mass through the Transactions > Management > Print Checks and Forms you should also have a drop-down on the right side labeled “Form”.
I have tried to put this code on the templates that i have
<#if line_index==0>
<#else>
<tr>
<td colspan=”3″>${line.datecol}</td>
<td colspan=”12″>${line.description}</td>
<td align=”right” colspan=”3″>${line.charge}</td>
<td align=”right” colspan=”4″>${line.payment}</td>
<td align=”right” colspan=”4″>${line.balance}</td>
</tr>
</#if>
But still getting the Balance forward so i think that its using a different template

I would throw TEST1 with a different number in each form to see if any of them print on the form.