13

我正在编写一个修改现有 excel 文档的脚本,我需要能够在其他两个列之间插入一列,例如 VBA 宏命令.EntireColumn.Insert

openpyxl有什么方法可以插入这样的列吗?
如果没有,关于写一个的任何建议?

4

2 回答 2

17

这是一个更快的方法的示例:

import openpyxl

wb = openpyxl.load_workbook(filename)
sheet = wb.worksheets[0]
# this statement inserts a column before column 2
sheet.insert_cols(2)
wb.save("filename.xlsx")
于 2018-03-22T21:55:01.227 回答
8

.EntireColumn.Insert在 openpyxl 中没有找到类似的东西。

我首先想到的是通过修改工作表上的 _cells 来手动插入列。我认为这不是插入列的最佳方式,但它有效:

from openpyxl.workbook import Workbook
from openpyxl.cell import get_column_letter, Cell, column_index_from_string, coordinate_from_string

wb = Workbook()
dest_filename = r'empty_book.xlsx'
ws = wb.worksheets[0]
ws.title = "range names"

# inserting sample data
for col_idx in xrange(1, 10):
    col = get_column_letter(col_idx)
    for row in xrange(1, 10):
        ws.cell('%s%s' % (col, row)).value = '%s%s' % (col, row)

# inserting column between 4 and 5
column_index = 5
new_cells = {}
ws.column_dimensions = {}
for coordinate, cell in ws._cells.iteritems():
    column_letter, row = coordinate_from_string(coordinate)
    column = column_index_from_string(column_letter)

    # shifting columns
    if column >= column_index:
        column += 1

    column_letter = get_column_letter(column)
    coordinate = '%s%s' % (column_letter, row)

    # it's important to create new Cell object
    new_cells[coordinate] = Cell(ws, column_letter, row, cell.value)

ws._cells = new_cells
wb.save(filename=dest_filename)

我知道这个解决方案非常丑陋,但我希望它能帮助您朝着正确的方向思考。

于 2013-04-05T07:49:56.030 回答