Originally Posted by Ken_Shea SendKeys,
It looks like Gerry whimped out on us  |
Hey, I had to get up at 5:00, and it was almost midnight.

I still don't think your code will work. See below.
Do While X < 50
If Coord(X) And Coord(X - 1) Then
' Do Stuff here
(I want to skip this part if the two above are equal)
End If
X = X + 1
Loop
I could just use if..then..else, but I think I would have to redo a bunch of code that always takes me an hour to figure out what it's doing.

What I'm going to do instead is just iterate through the array, and eliminate duplicates and make a new array, then use the new array. This makes some other things easier anyway. Thanks for the help, guys.