I want to print database fields (that appear in each row of data) in the page header and sort them horizontally. That is, I'm trying to circumvent the limitations of CR's crosstab report. I've got a (SQL Server) stored procedure that populates a temp table, whose structure looks like this:
RowID int (identity field)
Method varchar
Compound varchar
C1H1 varchar (column 1, header 1)
C1H2 varchar (column 1, header 2)
...
C6H5 varchar (column 6, header 5)
Data1 varchar (column 1 data point)
Data2 varchar (column 2 data point)
...
Data6 varchar (column 6 data point)
The temp table is populated with the header fields' values sorted properly.
Then in my Crytal Report I order the records by the RowID field, and I stack the header fields in 6 columns in the page header. But I'm still not getting the results I would expect.
Any ideas or suggestions wold be greatly appreciated!! Thanks!
RowID int (identity field)
Method varchar
Compound varchar
C1H1 varchar (column 1, header 1)
C1H2 varchar (column 1, header 2)
...
C6H5 varchar (column 6, header 5)
Data1 varchar (column 1 data point)
Data2 varchar (column 2 data point)
...
Data6 varchar (column 6 data point)
The temp table is populated with the header fields' values sorted properly.
Then in my Crytal Report I order the records by the RowID field, and I stack the header fields in 6 columns in the page header. But I'm still not getting the results I would expect.
Any ideas or suggestions wold be greatly appreciated!! Thanks!