Update row item activity

update row items activity what operations to perform
guys known please guide me
row and value and column what an operations are perform here explain briefly

Hi @Udhayaprakash_P1

What is your Requirement exactly? It will give everyone a better understanding of what is needed

If you wish to update a particular Row item, just use an Assign Activity:

  1. If you are using a For Each Data Row, then do:
CurrentRow.Item("ColumnName") = yourValue
  1. If you want to update a particular Row in a DataTable directly, then do:
DT.Rows(rowNumber).Item("ColumnName") = yourValue

here, rowNumber is Int32

If this meets your query, Do mark it as a solution
Happy Automation :star_struck:

2 Likes

Hey @Udhayaprakash_P1 here’s the logic

currentrow(“ColumnName”) = newValue

or

row(0) = newValue

cheers

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.