Insert Column
Inserts a new column to the table.
This activity inserts a new column to the user-specified table in the given workbook using the Microsoft Graph Create Column API.
Input
Connection Id:
GraphServiceClient VariableRequiredSpecifies the office 365 connection id.Table Name:
String ArgumentRequiredSpecifies the name of the table in which the column is to be inserted.Column Name:
String ArgumentRequiredSpecifies the name of the column to insert the column.Workbook:
Object ArgumentRequiredSpecifies the DriveItem of the Excel workbook that contains the table in which the specified column is to be inserted. 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].Position:
Object ArgumentSpecifies the relative position of the new column. If the field is left blank or if the specified value is greater than the index of the last column, the new column is added to the end and if the specified value is 0 then the column is added to the front.Column Values:
DataTable VariableRequiredSpecifies the values that are to be added in the new column as a DataTable containing a single column.
Last updated