這篇文章主要介紹了python操作openpyxl導出Excel 設置單元格格式及合并處理代碼實例,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
貼上一個例子,里面設計很多用法,根據將相同日期的某些行合并處理。
from openpyxl import Workbook from openpyxl.styles import Font, Fill, Alignment, Border, Side, PatternFill from handlers.boss_accountant import PbOrderManageBase from handlers.base.pub_func import ConfigFunc from dal.models import Shop from dal.db_configs import DBSession def export_excel(filename, sheetname, content_body): """ Excel表格導出 :param filename: 表格名稱 :param sheetname: 工作表名稱 :param content_body: 內容體 :return: None """ workbook = Workbook() if not filename: filename = "導出表格.xlsx" workbook_sheet = workbook.active if not sheetname: sheetname = "工作表" workbook_sheet.title = sheetname merge_dict, sheet_row_len, sheet_column_len = merge_content(content_body) print(merge_dict) # 數據寫入 for row in content_body: workbook_sheet.append(row) # 合并處理 for key in merge_dict.keys(): merge_data = merge_dict.get(key) if key == "title": workbook_sheet.merge_cells(start_row=merge_data[0], start_column=merge_data[1], end_row=merge_data[2], end_column=merge_data[3]) workbook_sheet.merge_cells(start_row=2, start_column=merge_data[1], end_row=2, end_column=merge_data[3]) workbook_sheet['A1'].font = Font(size=20, bold=True) workbook_sheet['A1'].alignment = Alignment(horizontal='center', vertical='center') else: # 使用sum求值 workbook_sheet.cell(row=merge_data[0] + 3, column=12).value = '=SUM({}:{})'.format( format_value(str(merge_data[0] + 3), 10), format_value(str(merge_data[1] + 3), 10)) workbook_sheet.cell(row=merge_data[0] + 3, column=14).value = '=SUM({}:{})'.format( format_value(str(merge_data[0] + 3), 11), format_value(str(merge_data[1] + 3), 11)) workbook_sheet.cell(row=merge_data[0] + 3, column=13).value = '=({}-{})'.format( format_value(str(merge_data[0] + 3), 12), format_value(str(merge_data[0] + 3), 14)) for i in [2,12, 13, 14]: workbook_sheet.merge_cells(start_row=merge_data[0]+3, start_column=i, end_row=merge_data[1]+3, end_column=i) # 合計求和 for i in [12, 13, 14]: workbook_sheet.cell(row=sheet_row_len, column=i).value = '=SUM({}:{})'.format( format_value(3, i), format_value(sheet_row_len - 1, i)) # 單元格底色 last_row = workbook_sheet[sheet_row_len] for each_cell in last_row: each_cell.fill = PatternFill("solid", fgColor="00CDCD") # 邊框設置 for each_common_row in workbook_sheet.iter_rows("A1:{}".format(format_value(sheet_row_len, sheet_column_len))): for each_cell in each_common_row: each_cell.border = Border(left=Side(style='thin', color='000000'), right=Side(style='thin', color='000000'), top=Side(style='thin', color='000000'), bottom=Side(style='thin', color='000000') ) workbook_sheet.column_dimensions['B'].width = 15 workbook_sheet.column_dimensions['C'].width = 20 workbook.save(filename) def merge_content(content_body): """ 合并統計 :param content_body: 數據體 :return: 合并字典 """ sheet_column_len = len(content_body[3]) sheet_row_len = len(content_body) merge_dict = {} data_content = content_body[3:-1] merge_dict["title"] = (1, 1, 1, sheet_column_len) current_data = data_content[0][1] current_row = 0 start_row = 1 end_row = 0 for data in data_content: current_row += 1 x = data[1] if data[1] == current_data: merge_dict[data[1]] = (start_row, current_row) else: merge_dict[data[1]] = (current_row, current_row) current_data = data[1] start_row = current_row return merge_dict, sheet_row_len, sheet_column_len def format_value(row, column): """數字轉ABC """ change_dict = { 1: "A", 2: "B", 3: "C", 4: "D", 5: "E", 6: "F", 7: "G", 8: "H", 9: "I", 10: "J", 11: "K", 12: "L", 13: "M", 14: "N", 15: "O", 16: "P", 17: "Q", 18: "R", 19: "S", 20: "T", 21: "U", 22: "V", 23: "W", 24: "X", 25: "Y", 26: "Z", } column = change_dict.get(column) return str(column)+str(row) def export_func_new(args, session, shop_id): # check_time = 0 # debtor_id = 2884 # debtor_name: 肖小菜 # end_date: # start_date: 2019 - 07 # statistic_date: 3 # data_type: 1 data_content = [] check_time = 0 from_date = "2019-07" to_date = "" debtor_name = "肖小菜" if_success, query_data, *_ = PbOrderManageBase.common_get_credit_stream(args, session, shop_id, export=True, need_sum=False, check_time=check_time ) if not if_success: raise ValueError(query_data) fee_text = ConfigFunc.get_fee_text(session, shop_id) get_weight_unit_text = ConfigFunc.get_weight_unit_text(session, shop_id) # 表店鋪、客戶名稱 shop_name = session.query(Shop.shop_name).filter_by(id=shop_id).first() data_content.append([shop_name[0]]) data_content.append(["客戶:{}".format(debtor_name)]) # 表頭 fee_text_total = '{}小計'.format(fee_text) header_content = [ "序號", "日期", "貨品名", "數量", "重量/{}".format(get_weight_unit_text), "單價", "貨品小記", "押金小計", fee_text_total, "賒賬金額","待還款", "賒賬小記", "已還款", "待還款小計" ] file_name_begin = "客戶還款" data_content.append(header_content) # 還款數據 index_num = 0 for single_data in query_data: index_num += 1 sales_time = single_data.get("sales_time", "") if sales_time: sales_time = sales_time.split(" ")[0] _payback_money = single_data["unpayback_money"] single_content = [index_num, sales_time, single_data["only_goods_name"], single_data["commission_mul"], single_data["sales_num"], "%s元/%s" % (single_data["fact_price"], single_data["goods_unit"]), single_data["goods_total"], single_data["commission_mul"], single_data["deposit_total"], single_data["credit_cent"], _payback_money, 0, 0, 0] data_content.append(single_content) # 表尾合計 data_content.append(["合計"]) config = ConfigFunc.get_config(session, shop_id) if not config.enable_deposit: index_deposit_total = data_content[0].index("押金小計") for data in data_content: data.pop(index_deposit_total) if not config.enable_commission: index_commission_total = data_content[0].index(fee_text_total) for data in data_content: data.pop(index_commission_total) file_name = "{}流水記錄導出_{}~{}.xlsx".format(file_name_begin, from_date, to_date) return file_name, data_content if __name__ == "__main__": filename = "測試打印表格.xlsx" sheetname = "工作表2" session = DBSession() args = { "check_time": 0, "debtor_id": 2884, "debtor_name": "肖小菜", "start_date": "2019-07", "statistic_date": 3, "data_type": 1 } filename, content_body = export_func_new(args, session, 104) # filename = "測試打印表格.xlsx" # sheetname = "工作表2" # content_body = [] # content_body.append(["打印表格表頭"]) # content_body.append(["客戶:肖某某"]) # content_body.append(["日期", "貨品銷售", "自營銷售", "代賣銷售", "聯營銷售", "總價"]) # content_body.append(["1", "2", "3.1", "4.1", "5.1", "5.1"]) # content_body.append(["1", "2", "3.1", "4.1", "5.1", "5.1"]) # content_body.append(["1", "2", "3.1", "4.1", "5.1", "5.1"])
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
更多文章、技術交流、商務合作、聯系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號聯系: 360901061
您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對您有幫助就好】元
