I am trying to build a macro that will select the first empty cell in column "A" for all worksheets in a workbook.<br><br>So far I have this:<br><b><br>Sub Go_To_First_Empty_Cell()<br>'<br>' Go_To_First_Empty_Cell Macro<br><br>Dim ws, Asheet<br>Set Asheet = Worksheets(ActiveSheet.Name)<br>Application.ScreenUpdating = False<br> For Each ws In Worksheets<br> ws.Select<br> Application.Goto Reference:=ws.Range("A1"
, Scroll:=True<br> Selection.End(xlDown).Select<br> <br> Next ws<br>Asheet.Activate<br>Application.ScreenUpdating = True<br><br>End Sub<br></b><br>This gets me to the last cell with data in column "A". I want to select the cell below that.<br><br>Any help?<br><br>