How to copy contents from an excel table and search one by one

First time using UiPath. What I want to do is as follows:

  1. I have an excel file with 1 column that lists out all my search fields (ID numbers)
  2. I want to copy each ID number one by one into a search bar and grab a few screenshots then save the screenshots to a folder.
  3. I want to reperform this same task for each ID Number in the column from the excel file.
  1. Inside Excel Application Scope, Read Range Activity to read the excel file into DataTable say DT.
  2. For Each Activity: for each row in DT
    Create a variable searchID
    Assign Activity, searchID = row(0).ToString
    Use Type Into Activity to enter the SearchID in the search bar
    Take Screenshot Activity to take the screenshot.

Regards,
Karthik