G Guest Feb 27, 2004 #1 I would like to progam a cell on a work sheet to automatically change the date once a week on Friday afternoon. The worksheet is a sign in sheet with the names of all employees.
I would like to progam a cell on a work sheet to automatically change the date once a week on Friday afternoon. The worksheet is a sign in sheet with the names of all employees.
B Bob Phillips Feb 27, 2004 #2 You could try an auto open macro, something like Public Sub Auto_Open() If Weekday(Date) = 6 Then Worksheets(1).Range("A1").Value = Format(Date,"dd mmm yyyy" End If End Sub -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) secureearl said: I would like to progam a cell on a work sheet to automatically change the Click to expand... date once a week on Friday afternoon. The worksheet is a sign in sheet with the names of all employees.
You could try an auto open macro, something like Public Sub Auto_Open() If Weekday(Date) = 6 Then Worksheets(1).Range("A1").Value = Format(Date,"dd mmm yyyy" End If End Sub -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) secureearl said: I would like to progam a cell on a work sheet to automatically change the Click to expand... date once a week on Friday afternoon. The worksheet is a sign in sheet with the names of all employees.