Hi-
I've been failing greatly trying to get different ideas working, or finding how to do this.
Is there a snippet of code I may please use (using something like XLRD, Pandas or OpenPyxl) to allow me to make a 3D-List of multiple Excel spreadsheets in an XLSX file, pls?
i.e.: I'd like to read in multiple Excel tabs/worksheets in an XLSX file, such as:
-----TAB#1-----
data-1a data-1b
data-2a data-2b
-----TAB#2-----
data-3a data-3b
data-4a data-4b
...and turn it into a 3D List like:
[ [ 'TAB#1', ['data-1a', 'data-1b'], ['data-2a', 'data-2b'] ] [ 'TAB#2', ['data-3a', 'data-3b'], ['data-4a', 'data-4b'] ] ]
Thank you so much,
CG
I've been failing greatly trying to get different ideas working, or finding how to do this.
Is there a snippet of code I may please use (using something like XLRD, Pandas or OpenPyxl) to allow me to make a 3D-List of multiple Excel spreadsheets in an XLSX file, pls?
i.e.: I'd like to read in multiple Excel tabs/worksheets in an XLSX file, such as:
-----TAB#1-----
data-1a data-1b
data-2a data-2b
-----TAB#2-----
data-3a data-3b
data-4a data-4b
...and turn it into a 3D List like:
[ [ 'TAB#1', ['data-1a', 'data-1b'], ['data-2a', 'data-2b'] ] [ 'TAB#2', ['data-3a', 'data-3b'], ['data-4a', 'data-4b'] ] ]
Thank you so much,
CG