Say I have data like the below and what I really want is to (pivot?) AssigedType as columns (Handling, Supervising, etc.) although I don't think pivot is the right way to go as I'm not aggregating anything. There'll be three tables involved: Matters, MattersProfessionals, Professionals), i.e.
Matters.Matters = MattersProfessionals.Matters Professionals.Professionals = Matters.Professionals
matterid    AssignedType    ProfName
27391-0001001   Handling    Skip A. Lawyer
37085-0051001   Handling    Skip A. Lawyer
37085-0051001   Supervising Skip A. Lawyer
18814-0226WO1   Handling    Skip A. Lawyer
37085-0050001   Handling    Skip A. Lawyer
37085-0050001   Supervising Skip A. Lawyer
37085-0053001   Supervising Skip A. Lawyer
37085-0053001   Handling    Skip A. Lawyer
37085-0052001   Handling    Skip A. Lawyer
37085-0052001   Supervising Skip A. Lawyer
18814-0226AU1   Handling    Skip A. Lawyer
Desired output:
MatterID       Handling        Supervising 
27391-0001001  Skip A. Lawyer  Skip A.Lawyer 
etc...
Like a pivot but without the aggregation?
 
     
    