crystalreporting
Instructor
I have a table with records like;
Customer Month 1 Month 2 Month 3...
-------- ------- ------- -------
AB001 100.00 120.00 98.00
BC001 212.00 126.00 88.00
.
.
.
I would like to create a view that would 'flatten' the table into;
Customer Month Amount
-------- ----- ------
AB001 1 100.00
AB001 2 120.00
AB001 3 98.00
BC001 1 212.00
.
.
.
Any ideas how I build the structure to accomplish this?
Peter Shirley
Macola Consultant, PA and surrounding states.
Customer Month 1 Month 2 Month 3...
-------- ------- ------- -------
AB001 100.00 120.00 98.00
BC001 212.00 126.00 88.00
.
.
.
I would like to create a view that would 'flatten' the table into;
Customer Month Amount
-------- ----- ------
AB001 1 100.00
AB001 2 120.00
AB001 3 98.00
BC001 1 212.00
.
.
.
Any ideas how I build the structure to accomplish this?
Peter Shirley
Macola Consultant, PA and surrounding states.