Advertisement
Guest User

Untitled

a guest
Oct 20th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. Const numberOfRaces As Long = 20
  2. Dim counter As Long
  3. counter = 1
  4. For Each tRow In tRows
  5. If Not headerRow Then
  6. counter = counter + 1
  7. If counter > numberOfRaces Then Exit For
  8. c = 2: r = r + 1
  9. results(r, 1) = asays(asay)
  10. Set tCells = tRow.getElementsByTagName("td")
  11. For Each tCell In tCells
  12. results(r, c) = tCell.innerText
  13. c = c + 1
  14. Next
  15. End If
  16. headerRow = False
  17. Next
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement