Hello all,
can you please fix my reset button code.
In cell J4 I have a message box after I do an entry and then it goes into the next cell.

After all my entry there is a reset button that I click to reset all my entry. But when I click the button box, the message box appear.
The Range("J4").Select is added for a good purpose. I want my cursor to return in J4 after I click the button.

Here is the reset button code I have in the VBA.

'delete button key

Sub Reset_Click()
[J4,AI5,C8,C14,C20].Value = ""
Range("J4").Select
End Sub