Форум сайта python.su
Для чтение файла Excel использую pyExcelerator
Как определить есть ли объединение ячеек в файле?
Всем спасибо
P.S. По примерам нашел как объединить ячейки, а как определить не могу найти
Офлайн
нашел xlrd, с примером кода для выдачи списка объединенных ячеек:
merged_cells
List of address ranges of cells which have been merged.
How to deconstruct the list:
for crange in thesheet.merged_cells:
rlo, rhi, clo, chi = crange
for rowx in xrange(rlo, rhi):
for colx in xrange(clo, chi):
# cell (rlo, clo) (the top left one) will carry the data
# and formatting info; the remainder will be recorded as
# blank cells, but a renderer will apply the formatting info
# for the top left cell (e.g. border, pattern) to all cells in
# the range.
Офлайн