CR10 with Sql 2000.
If someone has a better idea on how to handle this, I am all ears
User is asked via vb app whether they want to see an expense report for all categories, or just a select few. A view is created from their answer and a SP is created to pass the info to Crystal.
A simple cross tab seems like the best way to handle the dynamic column headings, except they are requesting the ability to drill down to the detail level of each cell, from my reading here, the best way to handle that is via a manual cross tab with a sub report linked to each cell.
Two tables involved, one with the categories:
CategoryID CategoryDescription
One with the Transactions, main fields would be:
TransactionID,Customer,TranAmount, CategoryID.
Group by Customer, expected output:
Name CategoryA CategoryB CategoryC......CategoryXXX
JoeSmoe 100.00 0.00 500.00 600.00
^
Drill down to transaction detail.
Categories could be Category A through XXX or only Category D and J.
Would dumping the categoryid into an array then using that array for the column setups be the solution? If so, could someone walk me through an example array?
Julie
CR 9,10 CE10 Sql DB
If someone has a better idea on how to handle this, I am all ears
User is asked via vb app whether they want to see an expense report for all categories, or just a select few. A view is created from their answer and a SP is created to pass the info to Crystal.
A simple cross tab seems like the best way to handle the dynamic column headings, except they are requesting the ability to drill down to the detail level of each cell, from my reading here, the best way to handle that is via a manual cross tab with a sub report linked to each cell.
Two tables involved, one with the categories:
CategoryID CategoryDescription
One with the Transactions, main fields would be:
TransactionID,Customer,TranAmount, CategoryID.
Group by Customer, expected output:
Name CategoryA CategoryB CategoryC......CategoryXXX
JoeSmoe 100.00 0.00 500.00 600.00
^
Drill down to transaction detail.
Categories could be Category A through XXX or only Category D and J.
Would dumping the categoryid into an array then using that array for the column setups be the solution? If so, could someone walk me through an example array?
Julie
CR 9,10 CE10 Sql DB