如何使用Python在Excel工作簿中拆分合并的单元格

3
有没有办法使用Python在Excel工作簿中拆分/取消合并单元格?我想要的是下面解释的-
结果应该是一个包含以下条目的新Excel文件-
使用xlrd的我的解决方案是将同一字符串复制到所有已合并的列中,如下所示-
[备注:“formatted_info = True”标志尚未在我使用的xlrd中实现,因此我无法直接获取已合并单元格的列表..我不应在设置中升级xlrd]
def xlsx_to_dict():
    workbook = xlrd.open_workbook(xlsfile)
    worksheet_names = workbook.sheet_names()
    for worksheet_name in worksheet_names:
        worksheet = workbook.sheet_by_name(worksheet_name)
        num_rows = worksheet.nrows - 1
        num_cells = worksheet.ncols - 1
        curr_row = -1
        header_row = worksheet.row(0)
        columns = []
        for cell in range(len(header_row)):
            value = worksheet.cell_value(0, cell)
            columns.append(value)

        cities = []

        for row in range(1,num_rows):
            value = worksheet.cell_value(row,0)
            type = worksheet.cell_type(row,0)
            if  not value == "":
                cities.append(value)

        names = []
        for row in range(1,num_rows):
            value = worksheet.cell_value(row,1)
            type = worksheet.cell_type(row,1)
            if  not value == "":
                names.append(value)

            current_city = cities[0]
            result_dict = {}
            for curr_row in range(1,num_rows):
                row = worksheet.row(curr_row)
                curr_cell = -1
                curr_name = names[0]
                while curr_cell < num_cells:
                    curr_cell += 1
                    cell_value = worksheet.cell_value(curr_row, curr_cell)
                    if cell_value in cities and curr_cell == 0:
                        current_city = cell_value
                        if not result_dict.has_key(current_city):
                            result_dict[current_city] = {}
                        continue
                    if cell_value == "" and curr_cell == 0:
                        continue
                    if cell_value in names and curr_cell == 1:
                        curr_name = cell_value
                        if not result_dict[current_city].has_key(curr_name):
                            result_dict[current_city][curr_name] = {}
                        continue
                    if cell_value == "" and curr_cell == 1:
                        continue
                    try:
                        result_dict[current_city][curr_name]['Phone'].append(cell_Value)
                    except:
                        result_dict[current_city][curr_name]['Phone'] = [cell_value]

上述函数将返回以下Python字典 -
{ 'New York' : { 'Tom' : [92929292, 33929] }, ........}

我会遍历目录并写入新的Excel表格。
然而,我希望有一种通用的方法来拆分合并单元格。

2
请分享一下你已经尝试过的内容?否则人们会继续给它投反对票。 - Alok
3个回答

1
此函数获取“真实”的单元格值,即如果坐标位于合并的单元格内部,则获取合并单元格的值。
def unmergedValue(rowx,colx,thesheet):
    for crange in thesheet.merged_cells:
        rlo, rhi, clo, chi = crange
        if rowx in xrange(rlo, rhi):
            if colx in xrange(clo, chi):
                return thesheet.cell_value(rlo,clo)
    #if you reached this point, it's not in any merged cells
    return thesheet.cell_value(rowx,colx)

该方法基于http://www.lexicon.net/sjmachin/xlrd.html#xlrd.Sheet.merged_cells-attribute,但效率较低,适用于较小的电子表格。


0
如果您的文件中间没有空单元格,这可能会有所帮助,读取文件,执行一些操作,重新写入。
def read_merged_xls(file_contents):
    book = xlrd.open_workbook(file_contents=file_contents)
    data = []
    sheet = book.sheet_by_index(0)
    for rx in range(sheet.nrows):
        line = [] 
        for ry in range(sheet.ncols):
            cell = sheet.cell_value(rx,ry)
            if not cell:
                cell = data[-1][ry] if data else ''
            line.append(cell)
        data.append(line)
    return data

0
import xlrd
import xlsxwriter
import numpy as np
import pandas as pd
def rep(l,i):
    j= i
    while(j>=0):
        if not l[j-1] == u'':
            return l[j-1]
        else:
            j = j-1
def write_df2xlsx(df,filename):
    # Create a Pandas Excel writer using XlsxWriter as the engine.
    writer = pd.ExcelWriter(filename,engine='xlsxwriter')

    # Convert the dataframe to an XlsxWriter Excel object.
    df.to_excel(writer, sheet_name='Sheet1', index = False)

    # Close the Pandas Excel writer and output the Excel file.
    writer.save()

def csv_from_excel(filename):

    wb = xlrd.open_workbook(filename)
    worksheet_names = wb.sheet_names()
    for worksheet_name in worksheet_names:
        sh = wb.sheet_by_name(worksheet_name)
        #To find the headers/column names of the xlsx file

        header_index = 0
        for i in range(sh.nrows):
            if(len(filter(lambda x: not (x.value == xlrd.empty_cell.value), sh.row(i))) == len(sh.row(i))):
                header_row = sh.row(i)
                header_index = i
                break
        columns = []
        for cell in range(len(header_row)):
            value = sh.cell_value(header_index, cell)
            columns.append(value)
        rows = []
        for rownum in range(header_index+1,sh.nrows):
            rows.append(sh.row_values(rownum))
        data = pd.DataFrame(rows,columns = columns)
        cols = [col for col in data.columns if u'' in list(data[col])]
        res = []
        for col in cols:
            t_list = list(data[col])
            res.append(map(lambda x,y: rep(list(data[col]),y[0]) if x == u'' else x,t_list,enumerate(t_list)))
        for (col,r) in zip(cols,res):
            data[col] = pd.core.series.Series(r)
        write_df2xlsx(data,'ResultFile.xlsx')   

1
欢迎来到StackOverflow。在作为答案发布代码时,最好附上简短的解释。这里有一个关于[回答]的指南。 - BenH

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接