Spin button does not have a double click event.
You could make use of the Shift key is the spin button is an ActiveX control.
right click worksheet tab and use this code.
Private m_blnShiftDown As Boolean
Private Sub SpinButton1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
If Shift Then
m_blnShiftDown = True
End If
End Sub
Private Sub SpinButton1_KeyUp(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
m_blnShiftDown = False
End Sub
Private Sub SpinButton1_SpinDown()
If m_blnShiftDown Then
Cells(ActiveCell.Row, "L").Value = Cells(ActiveCell.Row, "AA").Value
Else
Cells(ActiveCell.Row, "L").Value = Cells(ActiveCell.Row, "L").Value - 1
End If
End Sub
Private Sub SpinButton1_SpinUp()
If m_blnShiftDown Then
Cells(ActiveCell.Row, "L").Value = Cells(ActiveCell.Row, "AA").Value
Else
Cells(ActiveCell.Row, "L").Value = Cells(ActiveCell.Row, "L").Value + 1
End If
End Sub
Bookmarks