Above excel data will be added to queue or we will read data directly from excel and our bot will search the each project in the portal .
if the value of the cost in the excel is 80 or below then it has to select the Cost in 1.2 deficiency element OR if the value is above 80 then bot has to select NA.
Use Read Range activity to Read the Excel and declare a variable in the properties to make data to Datatable, Let’s say the variable is Dt
Now use For Each Row activity and pass the variable which is Dt
Use IF condition inside For Each Row activity write condition as
Cint(row(“Cost”).ToString) > 80
Then-> Place Select Item activity, and write as “Cost”, If you are getting error then you have to keep click activity to click the dropdown and any click activity to click on Cost
Else->Place Select Item activity, and write as “NA”, If you are getting error then you have to keep click activity to click the dropdown and any click activity to click on NA
Repeat the same for others also, but it should be inside the For Each row