I have a crystal report that gets its data from one stored procedure, this works fine and I have a nice grouped report with this data, showing information about a particular report,
However, this report also needs to have a number of graphs in the footer. These graphs draw their data from a different table, and so a different stored procedure. If I add this stored procedure to my existing report, I have to link it to the main stored procedure, this data can be linked, as there is a relationship - its about the same account, but the relationship is not really relevant to the report. When I do this I then end up with lots of duplicated data in the main report, the data in the graph is also wrong.
Can anyone explain the way Crystal reports works when there are more than one SQL queries used, and what the best way to accomplish what I need - a report showing both the main data set, and some graphs, which are about the same account, but use different data sets.