View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 6,953
Default After Creating New Tab I Hit <Enter, How Do I Make it Go Immediat

Sub Addsheet()
With ThisWorkbook
.Worksheets.Add(After:=.Worksheets( _
.Worksheets.Count)).Name = _
Format(Date, "yyyymmdd")
End With
ActiveSheet.Range("C3").Select
End Sub

--
Regards,
Tom Ogilvy


" wrote:

Every day I copy worksheets and rename them with the current date.
After I hit the <Enter key my cursor lands on what seem to be an
arbritrary spot on the worksheet. I would like it to default to Cell
C3 as the next action is to change the date in that cell.