Question: In SSRS 2005, I have 6 parameters:
Parameter_1
Parameter_2
Parameter_3
Parameter_4
Parameter_5
Parameter_6
They all have backward dependencies (Parameter_N depends on Parameter_(N-1) ).
When they appear in the output, they are ordered like this:
Parameter_1 Parameter_2
Parameter_3 Parameter_4
Parameter_5 Parameter_6
But I would need:
Parameter_1 Parameter_4
Parameter_2 Parameter_5
Parameter_3 Parameter_6
However, I can't rearrange the parameter list, because they all depend on each other, and the display ordering is determined by the list order of the parameters, which would mean the backward dependency becomes a forward dependency, which would be illegal...
Is there any way to achive this ?