我正在尝试将数据添加到excel中的命名表中,但是我不知道如何将其他行添加到命名excel表中,因为openpyxl文档对该软件包的功能没有帮助。到目前为止,到目前为止我能做的最好的事情是:
test = load_workbook(r'\\data4\users2\wyoung3\My Documents\Test.xlsx') twb = test['Sheet2'] twbs = twb._tables twbs = twbs.append(['s']) #this was my attempt to try and append an item to the bottom of the list test.save(r'\\data4\users2\wyoung3\My Documents\Test.xlsx')
这导致文件无法打开并显示错误消息:
[AttributeError:'列表'对象没有属性'tableColumns'
有人可以建议我如何解决这个问题吗?
我正在尝试将数据添加到excel中的命名表中,但是我不知道如何将其他行添加到命名excel表中,因为openpyxl文档对该软件包的功能没有帮助。最好的我...
您要问的问题不是很清楚,所以我将提供一些选择。 tutorial的openpyxl
实际上很不错,因此您应该尝试遍历它。