Update-ExcelOnline Cmdlet
Updates Microsoft Excel Online data.
Syntax
Update-ExcelOnline [parameters]
Remarks
The Update-ExcelOnline cmdlet allows you to use a syntax similar to SQL UPDATE statements to update Microsoft Excel Online data.
$conn = Connect-ExcelOnline Update-ExcelOnline -Connection $conn -Table "Test_xlsx_Sheet1" -Columns @("Column1") -Values @("Jon Doe") -Id "6"The Where parameter can also be used to specify the primary key of the table:
Update-ExcelOnline -Connection $conn -Table "Test_xlsx_Sheet1" -Columns @("Column1") -Values @("Jon Doe") -Where "Id = '6'"The primary key can also be passed to the cmdlet along the pipeline:
Select-ExcelOnline -Connection $conn -Table Test_xlsx_Sheet1 -Where "Column2 = 'Bob'" | Update-ExcelOnline -Columns @("Column2") -Values @("Bob 2")