Cmdlets for Microsoft Excel

Build 24.0.9062

Remove-Excel Cmdlet

Parameters   Output Objects  

Microsoft Excel データを削除します。

Syntax

Remove-Excel [parameters]

Remarks

Remove-Excel コマンドレットを使って、SQL DELETE ステートメントに似た構文を用いてMicrosoft Excel データを削除できます。

$conn = Connect-Excel -ExcelFile 'C:\MyExcelWorkbooks\SampleWorkbook.xlsx'
Remove-Excel -Connection $conn -Table "Sheet" -Id "5"
Where パラメータは主キーを指定するためにも使われます。
Remove-Excel -Connection $conn -Table "exTablePowershell;" -Where "RowId = 5"
主キーは、パイプライン上でコマンドレットに渡すこともできます。
Select-Excel -Connection $conn -Table Sheet -Where "FirstName = 'Bob'" | Remove-Excel

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 24.0.9062