Sub opendaily()
'
' opendaily Macro
' Macro recorded 6/10/2003 by Mike
'
'
Rows("20:51").Select
Selection.EntireRow.Hidden = False
Range("b20").Select
Cells.Find(What
:=today(), After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False).Activate
End Sub
Sub closedaily()
'
' Macro recorded 11/23/2003 by Mike
Range("b20").Select
Cells.Find(What
:=today(), _
After:=ActiveCell, _
LookIn:=xlFormulas, _
LookAt:=xlPart, _
SearchOrder:=xlByColumns, _
SearchDirection:=xlNext, _
MatchCase:=False, _
SearchFormat:=False).Activate
Rows(ActiveCell.Row & ":51").EntireRow.Hidden = True
Range("A1").Select
ActiveWorkbook.Save
End Sub
Bookmarks