Using the "For Each" syntax, if there a way to skip the first row? And I mean built into the syntax. For example, I'm looping through all the rows in an HTML Table. The first row is the column headings, so I want to ignore that row. The way I do it now, I use a For loop with a integer counter and I start the loop at 1 instead of 0. But then, obviously, I am not using the "For Each" syntax.
Thanks