A
Ana Dionísio
Is there some way to go around this limit? I need to import data from python to excel and I need 1440 columns for that.
Is there some way to go around this limit? I need to import data from python to excel and I need 1440 columns for that.
Is there some way to go around this limit? I need to import data from
python to excel and I need 1440 columns for that.
Doesn't sound like a Python question. But one answer is Libre Office
Calc, which seems to have a 1024 column limit.
Is there some way to go around this limit? I need to import data from python to excel and I need 1440 columns for that.
That's an Excel question, it has nothing to do with Python.
Have you considered using something other than Excel? As I understand it,
OpenOffice, LibreOffice, and Gnumeric do not have a 256 column limit.
But I still get the error and I use Excel 2010.
I'm trying to export data in a list to Excel
xlrd: Library for developers to extract data from Microsoft Excel
(tm).
It is for *reading* Excel files, not writing them. To get data
into Excel use the csv module and create the file using the
default 'excel-csv' format. Then load the file using Excel.
Creating an Excel file directly in Python is possible, but I
think it will require use of the Pywin32 extensions.
xlrd: Library for developers to extract data from Microsoft Excel
(tm).
It is for *reading* Excel files, not writing them.
[...]
Gnumeric is Linux-only
xlrd: Library for developers to extract data from Microsoft Excel
(tm).
It is for *reading* Excel files, not writing them.
There's xlrd[1] for reading and xlwt[2] for writing native XLS files.
If the OP needs greater control over things like formatting and
formula-cells, I'd suggest xlwt, as CSV restricts you to shoveling
around the data, not its formatting.
But I still get the error and I use Excel 2010.
I'm trying to export data in a list to Excel
xlrd: Library for developers to extract data from Microsoft Excel
(tm).
It is for *reading* Excel files, not writing them.
There's xlrd[1] for reading and xlwt[2] for writing native XLS
files. If the OP needs greater control over things like
formatting and formula-cells, I'd suggest xlwt, as CSV
restricts you to shoveling around the data, not its
formatting.
xlwt however only writes .xls files, not the newer .xlsx files,
so it is still subject to the 256-column limit no matter what
version of Excel you use to open the workbook.
Is there some way to go around this limit? I need to import data from python to excel and I need 1440 columns for that.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.