Forum Discussion
12 columns => 2 columns (SQL command or Unpivot?)
Hello!!!
I have a table connected to SQL that outputs a column for each month.
For working it better in Excel, I need to transforme that 12 columns to only 2... a first one for the values and the second for the respective month (that at this moment are the column titles).
In your opinion, which will be the better option (or if it dependes, advantages and desavantages):
a) a SQL command (not familiar to me);
b) use unpivot in Query Edit
Using the Unpivot feature in the Query Editor should work, but just keep your eye on how long it takes. If it can handle the transformation in an acceptable time, this will be the easist way to manage it.
If you are talking big data volumes then SQL will be faster, but the SQL will be more complex.
2 Replies
- Phil_SeamarkMicrosoft Employee
Using the Unpivot feature in the Query Editor should work, but just keep your eye on how long it takes. If it can handle the transformation in an acceptable time, this will be the easist way to manage it.
If you are talking big data volumes then SQL will be faster, but the SQL will be more complex.
- deathseekerRegular Visitor
So SQL it may be the best solutions in the long term, because I wil not to worry if the Query Editor handles diferent databases.
Thank you so much.