I have a table that has PDF output in jasper reports and I need a boolean expression to print an image only in the last row of the table. Can someone help me?
I have a table that has PDF output in jasper reports and I need a boolean expression to print an image only in the last row of the table. Can someone help me?
I was able to find the solution to this problem with the use of jasper's internal variable:
$V{REPORT_COUNT}.intValue()
It works as a row count of the detail band of your table, so I just use it in the of the image and add it to the lines you need.