I am trying to get the simple code below to cycle and put X and Y coordinates sequentially into cells. I can do it for the first cell, but it doesn't repeat. If I code it to put x and y in other cells, it automatically puts the first X and Y in all the cells--all the same number with only one click.
Sugestions?
Private Sub Image1_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
Range("A1").Value = X
End Sub
'Even when I put B1 for the x coordinate in B1 from the second click, B1 gets popullated after the first click, and all are the same x and same y.
Bookmarks