I'm completely new to jasperserver and ireport, but I've been managing. I did reach a block today and here is my problem: I'm trying to display multiple tables (maybe 50+) where each table can have the same data in the first column. The row for that column is entire different from row to row. By this I mean the following:
Value1 x1 y1 z1
Value1 x2 y2 z2
Value1 x3 y3 z3
Value2 x1 y1 z1
Value2 x2 y2 z2
Value2 x3 y3 z3
This can have the first column with similar the same value. I'm trying to change it so that each first column has its own table like so:
Value1 table
------------
X1 Y1 Z1
X2 Y2 Z2
X3 Y3 Z3
Value2 table
------------
X1 Y1 Z1
X2 Y2 Z2
X3 Y3 Z3
Edit
To expand on my original question, the data I'm retrieving via SQL is all stored in one table. I'm trying to break up that table with some simple formatting. I've linked a picture to hopefully ease your understanding.
Is this possible in Ireport?