Hi scojax22 and welcome to the Ozgrid Forums.
You can create a toggle button thru View-Toolbars-ControlToolbox then click on the design-mode icon, then the Toggle button icon and place & size the toggle button onto your sheet. Turn off design mode.
Paste the code below into your worksheet's code module
Private Sub ToggleButton1_Click()
If ToggleButton1.Value = True Then
'do this code
Else
'do this other code
End If
End Sub
Let us know if you need clarification or help with the macro.