I am using Crystal Reports version 11, ODBC driver to an informix database.
I have two tables, data and history that have the same field structure, where at times the data table gets dumped into the history table.
In both the tables I am working with these fields.
The primary key is session_id but I don't use it
'create_time'(epoch value) and
'progress_flag'(int "1-17")
The report should count all entries from both tables where a create_time exists within my range, broken down into groups based off progress flag
i.e.
------------------------------
March 2010
Progress Count
1 5
2 10
3 20
. 30
. 40
17 100
------------------------------
I currently have a working report, that calculates my date range converting the epoch and doing a lastfullweek off that computation, and I have it grouped and everything, but I have 2 different reports, one for each table. I would like to run a single report off of the merged data of the two tables.
Any ideas would be appreciated, thanks!
I have two tables, data and history that have the same field structure, where at times the data table gets dumped into the history table.
In both the tables I am working with these fields.
The primary key is session_id but I don't use it
'create_time'(epoch value) and
'progress_flag'(int "1-17")
The report should count all entries from both tables where a create_time exists within my range, broken down into groups based off progress flag
i.e.
------------------------------
March 2010
Progress Count
1 5
2 10
3 20
. 30
. 40
17 100
------------------------------
I currently have a working report, that calculates my date range converting the epoch and doing a lastfullweek off that computation, and I have it grouped and everything, but I have 2 different reports, one for each table. I would like to run a single report off of the merged data of the two tables.
Any ideas would be appreciated, thanks!