How Implement For each in a datatable using flowchat?

Hi UiPath,

Let say I have the datatable below:

JOB ID
141231
222315
241516

How can I loop through this datatable using a flow chart activity without using a for each data table activity?

Hope my question make sense

Thanks!

@alvin.c.apostol26

  1. Create a counter and start from 0
  2. decision to check int_var < dt.RowCount
  3. on true side access the row using dt.Rows(int_var)("Column")
  4. then increment int_var and link it back to entry of decision
  5. on false side the loop ends or you come out and do next task

cheers

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