Delete Column

Deletes a column from the workbook.

This activity deletes a specific column from a user-specified table in the given workbook using the Microsoft Graph Delete table column API.

Input

  • Connection Id: GraphServiceClient Variable Required Specifies the office 365 connection id.

  • Table Name: String Argument Required Specifies the name of the table from which the column is to be deleted.

  • Column Name: String Argument Required Specifies the name of the column in the specified table that is to be deleted.

  • Workbook: Object Argument Required Specifies the DriveItem of the Excel workbook that contains the table from which the specified column is to be deleted. We can also specify the output variable of the Find Files And Folders activity (which is First or Results) directly as input in this property or use the output variable of the Create Workbook activity (Workbook). If we are using the Results property of the Find Files And Folders activity then we can directly specify the element in the array. For example : Results[1].

Last updated