Public Sub GoToEntryCell()
[A45].Select
End Sub
To add VBA code to a regular or general module in an Excel workbook, press ALT+F11 to open the VBA development environment (VBE). Select the menu command Insert->Module to create a new VBA module. Paste the code into the document window that appears. Press ALT+F11 to return to the Excel workbook.
To add a command button to a worksheet that runs a macro, right-click on the menu bar and select Forms. Click on the gray rectangle icon. With the mouse, click where the upper left corner of the command button is to be placed and drag the mouse down and to the right to create the shape of the command button. A dialog is displayed asking for the macro to run when the command button is clicked. Select the desired macro and click the OK command button. If the macro is Private then it won't be listed but it can still be attached to the command button by manually entering its name.
Kevin