Skip to main content

Add to datatable

Comments

1 comment

  • Permanently deleted user

    Hi James, 

    You can do this with two Assign activities. The first will add the new column to the row, and the second will set the value:

    newColumn = myDataTable.Columns.Add("newColumnName")

    myDataTable.Rows(0).Items("newColumnName") = "newColumnValue"

    -Victoria

    0

Please sign in to leave a comment.