Extract excel data from columns

@Anelisa_Bolosha1,

Read range activity will give you output as DataTable. And then use For Each Row in datatable activity to iterate that data one by one row. While iterating through rows you can get each rows column by this code.

currentRow.Item("Column Name").Tostring

Thanks,
Ashok :slightly_smiling_face: