How do I get specfic date and data scrape it.
What is the source of the data?
If it is in Web, you can try with Datascraping
Hope this helps
Thanks
Yes , its web.
But lets say I want to find specific date like 06/04/20 and just data scrape the data with that date only.
You have two ways,
- You could search your data by typing date in your portal that you wish to scrape.
- Scrape all data you would get result as datatable, you could validate the data by writing condition like below,
If row"(posting date") = your date
Thanks,
Pankaj
Hello,
What if I want to get yesterday’s date only and data scrape it. Not the other data.
Thank you
Once you scrape the entire data, you can use Filter Datatable activity
row(“posting date”) = Now.AddDays(-1).tostring(MM/dd/yy)
so it will remove all the data except the yesterdays one
Hope this helps
Thanks
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.