Help with current the scenario

I have a scenario when I need to compare the supplier name in the system with the name in the spreadsheet, in case they matches we need to check if the checkbox is uncheck, in case it is uncheck we need to go to the next step. If the name doesn’t match or the checkbox is checked we need to go to the next line. I need to repeat this process until I find the appropriate one.

@olha.bisiuk

Welcome to the community

  1. Generally table rows will have tablerow and column properties whicha re basically numbers
  2. Use the for loop to loop on all rows…can get row count using extract datatable …Enumerable.Range(1,dt.RowCount)
  3. Inside the loop use the currentitem as variable in tablerow field and based on the column you need use tbalecol to get that row and column values…Use get attribute actiivty here
  4. use if condition to check if they match

cheers