i am using data scraping method to take values from report page and compare those values with an excel report.
in below image circle values i have to compare with excel values.
Q1. is it possible to read and compare without creating excel of this report page ? and ?
Q2. how to start reading columns after To then blank column then 11/28/33 ?
Fine
hope these steps could help you resolve this easily
either of this is absolutely possible
–use a extract datatable activity and get the output with a variable of type datatable named ExtractedDatatable of type datatable
–now use a for each row loop activity and pass the above variable as input
–inside the loop use a if condition directly
like this NOT String.IsNullOrEmpty(row(8).ToString)
If true it will go to THEN part where we use any activity we want or if its false that is it has null value then we can go for ELSE part