Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello.
I have a file with this schema:
Name Desc Year Type Client
Project A Project A Desc 2011 IT Client Z
Project B Project B Desc 2012 Non IT Client X
Project C Project C Desc 2013 IT Client Z
Project D Project D Desc 2014 IT Client X
I want to get values in a schema like this:
Pivot Name Pivot Value Name Desc Year
Type IT Project A Project A Desc 2011
Type Non IT Project B Project B Desc 2012
Type IT Project C Project C Desc 2013
Type IT Project D Project D Desc 2014
Client Client Z Project A Project A Desc 2011
Client Client X Project B Project B Desc 2012
Client Client Z Project C Project C Desc 2013
Client Client X Project D Project D Desc 2014
So according to the schema above, i want to pivot based on type and client colums. How can I do this?
Thanks in Advance.
Kind Regards.