【已解决】使用Python读取Excel表时出现Value must be either numerical or a string containing a wildcard报错

出现的问题

        最近在写一个用Python openpyxl处理Excel表格的脚本,刚开始可以顺利读取,但是换了个一张表之后就出现了Value must be either numerical or a string containing a wildcard的报错,在研究了一些其他案例之后我解决了该问题。

方法一:更改openpyxl的版本为3.0.10

        由于openpyxl新版本的原因,有bug会让我们在处理Excel表时发生报错。

        可以使用如下命令来改变openpyxl的版本然后再次运行程序。

#卸载原来的openpyxl
pip uninstall openpyxl

#安装版本为3.0.10的openpyxl
pip install openpyxl==3.0.10

方法二:取消所处理Excel表的筛选状态

        本人在更改了openpyxl的版本之后再次运行程序仍然出现原来的报错,在多次尝试之后发现Excel本身处于被筛选的状态,手动取消该Excel的筛选状态后代码即可成功运行。

你可能感兴趣的:(excel,python)