I have multiple fields appearing in a single report
data is like
field1 field2 filed3 field4
... ... ... ....
I need to report like
field1
1 field2
2 field2
3 field2
... ...
field1
1 field3
2 field3
3 field3
... ....
I get the data from storedprocedure.
The only way I could do is using subreport.
But subreport run stored procedure each time
If I link the main report with subreport data the structure
I get is
field1 field2
field1 filed3
field1 field4
... ....
data is like
field1 field2 filed3 field4
... ... ... ....
I need to report like
field1
1 field2
2 field2
3 field2
... ...
field1
1 field3
2 field3
3 field3
... ....
I get the data from storedprocedure.
The only way I could do is using subreport.
But subreport run stored procedure each time
If I link the main report with subreport data the structure
I get is
field1 field2
field1 filed3
field1 field4
... ....