pandas.read_excel 从活动工作表
我正在尝试使用 xlwings 从 excel 运行 python 代码。在我的代码中,我使用 pandas 从 Excel 中读取数据并将数据放入数据框中。函数 pandas.read_excel(io,sheet_name=0, nrows=0, usecols=0)
从 Excel 读取数据。所以我的 sheet_name
是我当前的工作表('Sheet3')、我的 nrows=3
和 usecols="A:F"
。我的 io
遇到问题。 io
是我想要使用的 excelworkbook:'workbook1.xlsm'
。当我从 vs code 运行代码时,一切正常,但是当我从 excel 作为宏运行它时,
Sub test()
RunPython ("import test")
End Sub
出现错误:文件未找到
可能是什么原因?
I'm trying to run python code from excel with xlwings. In my code I'm using pandas to read from the excel and put the data into a dataframe. The function pandas.read_excel(io, sheet_name=0, nrows=0, usecols=0)
reads from excel. So my sheet_name
is my current sheet('Sheet3'), my nrows=3
and usecols="A:F"
. I've problems with the io
. io
is the excelworkbook I want to use: 'workbook1.xlsm'
. When I'm running the code from vs code, all works fine, but when I run it from excel as a macro
Sub test()
RunPython ("import test")
End Sub
I get the error: file not found
What could be the reasons?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论