- Posts: 7
- Thank you received: 0
expand pivoted data
7 years 6 months ago #14773
by Gilbert
expand pivoted data was created by Gilbert
Supposed a pivoted dataset can be expanded further particularly from rows to column. Does ETL can transform on what appears to be a pivoted or grouped data?
Please Log in or Create an account to join the conversation.
7 years 6 months ago - 2 years 3 months ago #14774
by KevinJohn
Replied by KevinJohn on topic expand pivoted data
Advanced ETL has a function called UnPivot. It can accept an unnormalized dataset and transforms it into a normalized version by expanding the values from multiple columns in a single record into multiple records with the same values in a single column.
Supposed you have the following dataset.
After the transformation, we should be able to come up with the following.
Hope this answers your question
Supposed you have the following dataset.
After the transformation, we should be able to come up with the following.
Hope this answers your question
Last edit: 2 years 3 months ago by admin.
Please Log in or Create an account to join the conversation.