Iterate through columns in a datatable

Hi @manisha.k.chand

Use a For Each Row activity to iterate through the DataTable. Create a dictionary (debitSums). In the loop, check if the Debit Acc exists in the dictionary. If it does, add the Debit Amount to the sum, otherwise, add a new entry. After the loop, the dictionary will contain the summed amounts for each Debit Acc.

Happy Automation!