Hi,
Crystal report 10 with sql server stored procedure as datasource.
Is it possible to add a 'Sequence no column' as First column to a crosstab, something like a running total.
something like this:
Col_1
1 Row_1 3%
2 Row_2 4%
I tried to insert another crosstab with some sequence column in front of existing crosstab. The sequence numbers are showing. Using a formula for the sequence column.
formula is like:
If ProcName.Row_Name = 'aaa' then
1
else
If ProcName.Row_Name = 'bbb' then
2
The problem is then 'aaa' does not show up for some parameter, the sequence column does not show up 1, then it starts with 2. Likewise in the middle some number is missing.
Or if can force to bring all Row_Name, it will be good solution, but I am not able to bring all rows in the resultset. I tried different join in the stored procedure.
Crystal report 10 with sql server stored procedure as datasource.
Is it possible to add a 'Sequence no column' as First column to a crosstab, something like a running total.
something like this:
Col_1
1 Row_1 3%
2 Row_2 4%
I tried to insert another crosstab with some sequence column in front of existing crosstab. The sequence numbers are showing. Using a formula for the sequence column.
formula is like:
If ProcName.Row_Name = 'aaa' then
1
else
If ProcName.Row_Name = 'bbb' then
2
The problem is then 'aaa' does not show up for some parameter, the sequence column does not show up 1, then it starts with 2. Likewise in the middle some number is missing.
Or if can force to bring all Row_Name, it will be good solution, but I am not able to bring all rows in the resultset. I tried different join in the stored procedure.