gpt4 book ai didi

excel - 使用参数从 PowerShell 调用 Excel 宏

转载 作者:行者123 更新时间:2023-12-01 19:04:34 25 4
gpt4 key购买 nike

使用 Powershell 从脚本调用 Excel 宏相当容易,例如使用 this 之类的脚本。 :

$excel = new-object -comobject excel.application
$excelFiles = Get-ChildItem -Path C:\fso -Include *.xls, *.xlsm -Recurse
Foreach($file in $excelFiles)
{
$workbook = $excel.workbooks.open($file.fullname)
$worksheet = $workbook.worksheets.item(1)
$excel.Run("CreateChart")
$workbook.save()
$workbook.close()
}
$excel.quit()

但是,我无法调用带有一些参数的宏。这是可能的还是编写宏在调用时读取的配置文件的最佳方法?

最佳答案

您可以使用如下参数运行宏:

$excel.Run('CreateChart', 'arg1', 'arg2', ...)

关于excel - 使用参数从 PowerShell 调用 Excel 宏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19536241/

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