我正在嘗試從工作簿1中復(fù)制特定行,并將其追加到工作簿2中的現(xiàn)有數(shù)據(jù)中。從工作簿 1 中復(fù)制突出顯示的行,并將它們追加到“March”下方的工作簿 2 中到目前為止,我成功地復(fù)制并粘貼了范圍,但有兩個(gè)問題:1.單元格是移位的2.缺少百分比(公式),只留下數(shù)值。在此處查看結(jié)果import openpyxl as xlsource = r"C:\Users\Desktop\Test_project_20200401.xlsx"wbs = xl.load_workbook(source)wbs_sheet = wbs["P2"] #selecting the sheetdestination = r"C:\Users\Desktop\Try999.xlsx"wbd = xl.load_workbook(destination)wbd_sheet = wbd["A3"] #select the sheetrow_data = 0for row in wbs_sheet.iter_rows(): for cell in row: if cell.value == "Yes": row_data += cell.rowfor row in wbs_sheet.iter_rows(min_row=row_data, min_col = 1, max_col=250, max_row = row_data+1): wbd_sheet.append((cell.value for cell in row)) wbd.save(destination)有沒有人知道我該如何解決這個(gè)問題?任何反饋/解決方案都會(huì)有所幫助!謝謝!
2 回答

MMTTMM
TA貢獻(xiàn)1869條經(jīng)驗(yàn) 獲得超4個(gè)贊
我認(rèn)為min_col應(yīng)該= 0
范圍(“A1”)。公式(在 VBA 中)獲取公式。范圍(“A1”)。值(在 VBA 中)獲取值。
因此,請(qǐng)嘗試在蟒蛇中使用 .公式
(感謝:從單元格中獲取公式 - VBA ...如果這有效)

四季花海
TA貢獻(xiàn)1811條經(jīng)驗(yàn) 獲得超5個(gè)贊
只是想在這里添加我自己的解決方案。
我所做的是循環(huán)訪問列并應(yīng)用“cell.number_format= '0%',這會(huì)將您的單元格值轉(zhuǎn)換為百分比。
for col in ws.iter_cols(min_row=1, min_col=2, max_row=250, max_col=250): for cell in col: cell.number_format = '0%'
更多信息可以在這里找到: https://openpyxl.readthedocs.io/en/stable/_modules/openpyxl/styles/numbers.html
添加回答
舉報(bào)
0/150
提交
取消