Can I have a list, when opening, go to first blank row in the lis.

T

Tucson Guy

When I open a worksheet,can excel automatically display the first blank row
in the list?
 
N

Norman Jones

Hi Tucson Guy,

Assuming that the list is a range named "MyList", try:

Sub workbook_open()
Application.Goto Range("MyList").Cells(1).End(xlDown)(2)
End Sub


Paste this in to the workbook's ThisWorkbook module.
 
Top