Private Sub Workbook_Open()
xdate = "12/12/2013" 'change to desired expiry date
tdate = Format(Now(), "mm/dd/yyyy")
If xdate < tdate Then
Application.DisplayAlerts = False
Sheets("abc").Delete 'change the sheet to desired name
Application.DisplayAlerts = True
Else
End If
End Sub