gpt4 book ai didi

python - Openpyxl:我们发现一些内容有问题

转载 作者:行者123 更新时间:2023-12-03 17:12:10 24 4
gpt4 key购买 nike

打开我使用 openpyxl 生成的文件时,我收到错误消息“我们发现某些内容有问题”。该文件是通过连接不同的 xlsx 文件并在其他单元格中添加其他公式来生成的。

问题是由我正在写入单元格的带有 if 条件的公式引起的(第二个 for 循环导致 excel 错误消息)。

那是代码:

import openpyxl as op
import glob

# Search for all xlsx files in directory and assign them to variable allfiles
allfiles = glob.glob('*.xlsx')
print('Following files are going to be included into the inventory: ' + str(allfiles))

# Create a workbook with a sheet called 'Input'
risk_inventory = op.load_workbook('./Report/Risikoinventar.xlsx', data_only = False)
input_sheet = risk_inventory['Input']
risk_inventory.remove(input_sheet)
input_sheet = risk_inventory.create_sheet()
input_sheet.title = 'Input'
r_maxrow = input_sheet.max_row + 1

# There is more code here which is not related to the problem

for i in range (2,r_maxrow):
if input_sheet.cell(row = i, column = 2).value == 'Top-Down':
input_sheet.cell(row = i, column = 20).value = '=IF(ISTEXT(H{}),0,IF(H{}<=1000000,1,IF(H{}<=2000000,2,IF(H{}<=4000000,3,IF(H{}<=8000000,4,IF(H{}>8000000,5,0))))))'.format(i,i,i,i,i,i)
elif input_sheet.cell(row = i, column = 2).value == 'Bottom-Up':
input_sheet.cell(row = i, column = 20).value = '=IF(ISTEXT(H{}),0,IF(H{}<=1000000,1,IF(H{}<=2000000,2,IF(H{}<=4000000,3,IF(H{}<=8000000,4,IF(H{}>8000000,5,0))))))'.format(i,i,i,i,i,i)

for i in range (2,r_maxrow):
if input_sheet.cell(row = i, column = 2).value == 'Top-Down':
input_sheet.cell(row = i, column = 21).value = '=IF(K{}="Sehr gering",1,IF(K{}="Gering",2,IF(K{}="Mittel",3,IF(K{}="Hoc",3,IF(K{}="Sehr hoch",3,0))))))'.format(i,i,i,i,i,i)
elif input_sheet.cell(row = i, column = 2).value == 'Bottom-Up':
input_sheet.cell(row = i, column = 21).value = '=IF(K{}="Sehr gering",1,IF(K{}="Gering",2,IF(K{}="Mittel",3,IF(K{}="Hoc",3,IF(K{}="Sehr hoch",3,0))))))'.format(i,i,i,i,i,i)

因此,根据单元格中的信息(行 = i,列 = 2),我想要单元格中的特定公式(行 = i,列 = 21)。第一个 for 循环完美运行,第二个 for 循环导致 excel 中的错误消息并且公式没有被粘贴)

正如您可能已经看到的那样,我正在尝试使用 Python 编码一个星期,而以前从未尝试过编码……

提前谢谢了!

最佳答案

我也遇到了同样的问题,是因为公式写错了。我在打开文件时单击“查看”而不是“删除”发现了问题所在。

关于python - Openpyxl:我们发现一些内容有问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61161435/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com