Hi,
I need to scrape a column(containing numbers) on a website.
Then I need to check if the data collected is matched with a column in my Excel.
If, it matches then I perform action A.
If no row matches, them I have a message box saying: “Data does not match!”
I already scraped my data and below is my process:
However, there is an issue.
If there are 3 rows when scraping and only second row matches with data in Excel, then the program does this:
message box saying: “Data does not match!”
Perform action A
message box saying: “Data does not match!”
It is looping through each row individually.
I want it to first check for all rows if it matches with excel data, ONLY THEN it performs Action A.
If initially not matching rows are found then we have the message box saying: “Data does not match!”
Can someone help please?
Thanks!