Newbie here and I’ve scoured the Web trying to figure out how to do this.
All I am trying to do is searching an excel table based on user input data and extracting data in each cell of that row and putting it into a pdf. I can’t seem to figure out how to “find the row, and then proceed to copy each cell as a saved value”
You don’t copy/paste. Use Read Range to get the data from the Excel file into a datatable. Then use For Each Row in Datatable to loop through the rows. Inside the loop do the steps you need to do for each row.
I strongly suggest doing the free online UiPath training. It covers basics like this.
this would make a new data table called dt_filtered which only contains the row where
column name is equal to Zachery.
then your could easily print it with the method postwick explained above my comment.