I have a user form (modeless) with option buttons (35) that input a value into the active cell.

I then have to click into another cell on sheet, then go back to option button.

What I would like to do to is ... move to the next cell using arrow keys or by vba, instead of clicking.

Can code be adjusted to allow this.

Sample of code
Private Sub OptionButton1_Click()    
    ActiveCell.Value = 1
    
End Sub


Private Sub OptionButton2_Click()
    ActiveCell.Value = 2
 
End Sub


Private Sub OptionButton3_Click()
    ActiveCell.Value = 3
  
  End Sub