I have a data in the below format
| Location | Burnit | | | | |
| Unit | NFE | | | | |
| Date | 2-Feb-14 | | | | |
| Work | Repair | | | | |
| Type | XDF | | | | |
| Brand | Poly | | | | |
| ID | | | | 12EE4 | 134U |
| Grade | | | | 2 | 1 |
| density | at 450 | L09 | kg | 21 | 44 |
| | at 300 | M09 | ml | 1200 | 2344 |
| composition | CC | D12 | % | <1 | >1 |
| | BM | E44 | % | 1 | 0.5 |
I would like to restructure it to the format below so that i can make better analysis out of it
| Location | Unit | Date | Work | Type | Brand | ID | Grade | Metric | level | code | Measure | reading | lower | upper |
| Burnit | NFE | 2-Feb-14 | Repair | XDF | Poly | 12EE4 | 2 | density | at 450 | L09 | kg | 21 | | |
| Burnit | NFE | 2-Feb-14 | Repair | XDF | Poly | 12EE4 | 2 | density | at 300 | M09 | ml | 1200 | | |
| Burnit | NFE | 2-Feb-14 | Repair | XDF | Poly | 12EE4 | 2 | composition | CC | D12 | % | | | 1 |
| Burnit | NFE | 2-Feb-14 | Repair | XDF | Poly | 12EE4 | 2 | composition | BM | E44 | % | 1 | | |
| Burnit | NFE | 2-Feb-14 | Repair | XDF | Poly | 134U | 1 | density | at 450 | L09 | kg | 44 | | |
| Burnit | NFE | 2-Feb-14 | Repair | XDF | Poly | 134U | 1 | density | at 300 | M09 | ml | 2344 | | |
| Burnit | NFE | 2-Feb-14 | Repair | XDF | Poly | 134U | 1 | composition | CC | D12 | % | | 1 | |
| Burnit | NFE | 2-Feb-14 | Repair | XDF | Poly | 134U | 1 | composition | BM | E44 | % | 0.5 | | |
Note: I have many such tables stored as multiple tabs within an excel sheet. My workflow needs to surf through each tab and do the above restructuring process and finally append all the data together into a single table.
I would like to know if such a restructuring process is possible in Alteryx. Any suggestions? Thanks