Passing Datatable Value in TypeInto Activity

Hi @Tanzill_Ahsan, in case you have to use DataTable itself and want to access each column data in a row, you can use ‘For Each Row in Data Table’ activity and inside which use the following CurrentRow.Item(“Ref_Id”).ToString, CurrentRow.Item(“date_time”).ToString and so on for each of the columns you have. You can either use this directly in the respective ‘Type Into’ activities or assign to a specific variable and use that variable.