You may encounter this error during report generation.
One cause of this error is when you have nested $if or $repeat statements that don't use the numbering mechanism that's required when nesting. In order for the reporting engine to match up $ifs / $endifs , and $repeats / $endrepeats when they're nested, you need to need to number them. For example:
$if1 UseCases Exist
...
$if2 Notes Exist
...
$endif2
$endif1
Likewise for repeats:
$repeatUseCases1SortID
...
$repeatUseCases2
...
$endrepeatUseCases2
$endrepeatUseCases1
Learn more about nested statements in the Custom Reporting User Guide.
Comments