I have searched the questions, not finding an exact answer to mye specific question.
I have a table with these values:
Case Milestone Sorting Date
1 A 1 A1
1 B 2 B2
1 A 3 A3
1 B 4 B4
2 A 1 A1
3 A 1 A1
3 B 2 B2
Basically I would like to go through the rows and move the date to the corresponding column; Milestone A goes to column A with value = date. The problem is that I have multiple sets of cases with identical milestones. Sorting should be used to determine which milestones belong to which case.
The end result should be this:
Case A B
1 A1 B2
1 A3 B4
2 A1
3 A1 B2
Any ideas how to accomplish this?
Thank you very much,
Kjell