I have a little complex situation here. i have regluar columns and then some hard coded coulumns. First few columns have customer info, Id, and name. next few columns are customized. month1 to month6. under each month a sequence number has coded to "1" represent month one. So if the first digit of the sequence # is 1 then it falls under month1, if first digit is 2 then it falls under mont2 and the same until month6. Now the sequence number appears twice for the same customer, but also want the other sequence numbers under all the months in the same row as well for all different combinations. How is that possible.
this is what it shows:
Id Name Month1 month2 month3
1 abc 1345
1 abc 2567
1 abc 3567
1 def 3569
1
this is what i want:
Id Name Month1 month2 month3
1 abc 1345 2567 3567
1 def 1346 2567 3567
1 ghi 1345 2568 3567
1 jkl 1345 2568 3569
Any ideas? Really need some help!