I'm using iReport 5.6 to generate reports for my JavaApp, I have three datasets where as bellow :
dataset1 query
SELECT * FROM players s WHERE s.role = 1
dataset2 query
SELECT * FROM players s WHERE s.role = 2
dataset3 query
SELECT * FROM players s WHERE s.role = 3
then I have created 3 Detail bands where I have put :
Detail 1 contains table1 that uses dataset1 : in this table I defined the headers that are the same for the other tables (2 and 3)
Detail 2 contains table2 that uses dataset2
Detail 3 contains table3 that uses dataset3
What I can't do is to add a count column using the $V{REPORT_COUNT} jasper variable for the three table that doesn't refresh the counting as
I want this counting to continue the incrementation.
