There are many ways to do this. It comes down to personal preference. But the principle is the same. You need to start somewhere (in this case the last row) and then work through each row one by one, and then stop somewhere (in this case the second to top row). Some different ways you could do this are....
first count the number of rows, then do a for next loop like the following
This will set x = to the row you want to work on, and step backwards up the page.
Another way would be to load your column into a range in VBA with a line of code like this.
This would start at the top of the list and work down the list, so you would need to change your code so that it checked the cell below the current cell, rather than the cell above the current cell, like this..
the wend statement relates to the while statement (ie while end). It loops between while and wend until the test is satisfied, in this case until the current row is 2, which is the top row in your list.
Technically, using set myRange=.... is probably better, because everything is done in memory. The solution I provided you actually uses the cells in the sheet, and moves the selected cell around to keep track. This is much slower, and for this reason I have to turn off screen updating. If I didn't turn this off, it would look cool, but it would be verrrry slow.
When I learnt to do this, I never used set myRange =.. because I didn't understand how to make it work. Once you work it out, it is probably a better way to go. I don't know why I didn't do it that way.
Bookmarks