G Guest Jan 23, 2005 #1 Can I write something into a spreadsheet so that it will only work for a set period of time? TIA Michele
Can I write something into a spreadsheet so that it will only work for a set period of time? TIA Michele
R Ron de Bruin Jan 23, 2005 #2 Try this in the Thisworkbook module It will only work if the user Enable the macro's Private Sub Workbook_Open() If Date > DateSerial(2005, 1, 22) Then ThisWorkbook.Close False End Sub
Try this in the Thisworkbook module It will only work if the user Enable the macro's Private Sub Workbook_Open() If Date > DateSerial(2005, 1, 22) Then ThisWorkbook.Close False End Sub