打开新的 Excel 工作簿/工作表

打开新的 Excel 工作簿/工作表

我想知道如何使用 powershell 调用函数?

通常在 Excel 中,为了找出一行中使用了多少个“字符串”,我们使用

=NB.SI(range,"string").

我想(=NB.SI(range,"string") )用 powershell 脚本调用这个函数。

是否可以?

我尝试过使用$objExcel.worksheetFunction.Match("string",range)但是没用。

还有其他方法吗?

答案1

这里有一个资源可以帮助您解答疑问。

打开新的 Excel 工作簿/工作表

$Excel = new-object -comobject excel.application
$ExcelWordBook = $Excel.Workbooks.Add()
$ExcelWorkSheet = $ExcelWordBook.Worksheets.Add()
$Excel.Visible = $true

https://sqlnotesfromtheunderground.wordpress.com/2014/01/25/modifying-excel-documents-with-powershell/

相关内容