Reading data from HTML table

sgbreslin

New Member
Hi, I am reading data from a dynamic HTML table using 'Get Table' which is fine, however, the results contain 3000+ rows of data, which I then have to search through for matching criteria. When the table is sorted on screen I can see that only 7 rows of the current data match what I need. My question is can I just pull those 7 rows without need to pull 3000+ records into a collection in order to validate ?
 

cs.andras

Active Member
Hi, I am reading data from a dynamic HTML table using 'Get Table' which is fine, however, the results contain 3000+ rows of data, which I then have to search through for matching criteria. When the table is sorted on screen I can see that only 7 rows of the current data match what I need. My question is can I just pull those 7 rows without need to pull 3000+ records into a collection in order to validate ?
Hi,
Maybe use Dynamic or Wildcard attribute and get the row number of the cell, with which you may be able to refer to all the neighbouring cells (the complete row).
I hope I made sense.
 
Top