In VBA - Can any one explain how to - When opening workbook - use the current date (month) to goto the correct corresponding date named monthly worksheet (named January thru December)
Option Explicit
Private Sub Workbook_Open()
Dim ws As Worksheet
Dim sMonth As String, sDate As Date
sDate = Date
sMonth = MonthName(Month(sDate))
Sheets(sMonth).Activate
End Sub