Hello,
I have a table has 2 columns:
Col1 Col2
A New
A New
B Contacted
C Canceled
C Qualified
I want to summurize these data in new table as follow:
Col1 New Contacted Canceled Qualified
A 2 0 0 0
B 0 1 0 0
C 0 0 1 1
what is the expresion will help to do this?
Regards,