TaxCycle

last()

Updated: 2026-01-16

The last() function looks for the last instance that matches the condition and then stops.

For example, you can use this function to to select the "last," usually most recent, T1-ADJ, if there is more than one.

{{#CurrentClient}}{{#last(Adjustments)}}{{#T1ADJ}}

This calls the last instance of the T1-ADJ form. You can then use select() or selectFirst() to choose the correct row from the table.

{{/T1ADJ}}{{/last(Adjustments)}}{{/CurrentClient}}