Copying data from excel sheet

I am given an excel sheet with some data in the first column.
I want to google search each row item.
How do I copy each data and then search it?
Please help. :slight_smile:

Use Read Range to get the data from excel and put it into a DataTable. Then use a For Each Row to loop through the datatable. Inside the loop activity is where you do the google search, since that will loop once for every item.

Thanks for the quick response.
I’ll try that, thanks.

1 Like