Hi,
I have a DataTable with StudentID and and age columns.I have all the Student IDs but have to update one StudentID with age only.How to do it?
Thanks!
Hi,
I have a DataTable with StudentID and and age columns.I have all the Student IDs but have to update one StudentID with age only.How to do it?
Thanks!
use Read Range Activity to read Data from Excel file and will give you output as āDataTableā
Then use For Each Row Activity to itreate that dataTable.
ForEach row in DT
If row(āStudentIDā).Tostring = ārequried Idā
Then:
row(āageā).Tostring = āageValueā
Then finally use Write Range to write into Excel file and pass that DataTable.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.