Hi All!
I have a library of information in an excel sheet that I want to be able to format in a certain way.
Currently the way that it is set up is like this: (here's a snippet)
<tbody>
[TD="width: 156"]The Shawshank Redemption[/TD]
</tbody>
This table is extremely large (70,000 + rows)
I would like to know of a way to convert the aformentioned format into a more manageable row format (example below)
<tbody>
[TD="width: 156"] Category [/TD]
[TD="width: 156"] Minutes [/TD]
[TD="width: 156"] Year [/TD]
[TD="width: 156"] Main Actor [/TD]
[TD="width: 156"] Rating [/TD]
</tbody>
Any ideas would be GREATLY APPRECIATED! Thank you.
I have a library of information in an excel sheet that I want to be able to format in a certain way.
Currently the way that it is set up is like this: (here's a snippet)
Movie Title | |
Category | Drama |
Minutes | 142 |
Year | 1994 |
Main Actor | Tim Robbins |
Rating | 9.2 |
Movie Title | The Godfather |
Category | Drama |
Minutes | 175 |
Year | 1972 |
Main Actor | Marlon Brando |
Rating | 9.2 |
<tbody>
[TD="width: 156"]The Shawshank Redemption[/TD]
</tbody>
This table is extremely large (70,000 + rows)
I would like to know of a way to convert the aformentioned format into a more manageable row format (example below)
Movie Title | |||||
The Shawshank Redemption | Drama | 142 | 1994 | Tim Robbins | 9.2 |
The Godfather | Drama | 175 | 1972 | Marlon Brando | 9.2 |
<tbody>
[TD="width: 156"] Category [/TD]
[TD="width: 156"] Minutes [/TD]
[TD="width: 156"] Year [/TD]
[TD="width: 156"] Main Actor [/TD]
[TD="width: 156"] Rating [/TD]
</tbody>
Any ideas would be GREATLY APPRECIATED! Thank you.