Zum Hauptinhalt gehen

Add to datatable

Kommentare

1 Kommentar

  • 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

Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.