1.Searched the value (ABCDE) in website.
2.Get the result and store it in the excel file.(B2 cell)
3.Go back searched the (LMNOP) in website.
4.Get the result and store the value in scrapped column. (B3 cell)
But the value overhere gets replaced in B2 cell. Which command I should write to store the value in new cell.
You must be using ForEachRow Activity. Within that you will see the properties panel der is output section which gives you the index. SO declare a variable der as follows.
And within Write Cell Activity just mention as i have shown in the below SS
This will get the current row value index that you are searching for in the website and will append it to the Scrapped column for that same row
See below img
Write Range activity requires the datatable
So it depends on the data what you are extracting. If you are extracting the data that returns the data table then its ok to use Write Range Activity.
If as per the eg you gave der is only one value which returns String/Text that you extract and write it into a particular cell then you must use Write Cell.
@Pratik_Wavhal
1.I have created the flowchart of the process where in Read Range activity we read the excel data.
In read range activity I have used ReadDT as output variable.You can see in the below image.
So as i previously said you that will be better as per my experience
dummyVariable will be the datatable variable you got from extracting data from website
One by one it will write into cell in the increment way