In datatable format; how do we change the value in a specific row and column?

In datatable format; how do we change the value in a specific row and column?

e.g; How can I change row 63 of a datatable and the data value with the column name “Tenant”?

It could be linq or any other method.

Hi @ekseri ,

Could you give a try on the below Expression :
image

DT.Rows(63)("Tenant") = "Your Value"

Here, 63 / 62 need to be used, Since we do not know what was the index start when you mentioned 63.

1 Like

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