Any ideas on how to get a button to change cell values based on a table. Say cell A1 is the active cell and i want this value changed everytime I click the button based on t
If you interested to use a helper cell then you can use following codes.
Private Sub CommandButton1_Click()
Dim increment As Long
increment = Range("XFD1048576").Value
Range("A1").Value = Range("B1").Offset(increment, 0).Value
Range("XFD1048576").Value = increment + 1
If Range("XFD1048576").Value >= Range("B:B").End(xlDown).Row Then
Range("XFD1048576").Value = 0
End If
End Sub