编程语言
首页 > 编程语言> > python运行excel的VBA代码

python运行excel的VBA代码

作者:互联网

import os, os.path
import win32com.client
    
if os.path.exists("ceshi.xlsm"):
    xl=win32com.client.Dispatch("Excel.Application")
    wb = xl.Workbooks.Open(os.path.abspath("ceshi.xlsm"), ReadOnly=1) #打开excel文件,只读模式
    xl.Application.Run("ceshi.xlsm!Module1.ceshi") #运行VBA代码
    wb.Close(False) #close the work sheet object rather than quitting excel
    del wb
    del xl

  python运行excel的VBA代码;非常简单。

标签:VBA,wb,xl,python,ceshi,excel,os
来源: https://www.cnblogs.com/wingxyz/p/16471778.html