there could be other ways to do so.. but right now the most simplest one that comes to my mind is by using Macro..
you can use the following code..
Suppose the name of the sheet in which the date is stored is "abc"
In VBA-->Microsoft Excel Objects-->ThisWorkbook, write the following code
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
Sheets("abc").activate
Cells.select
selection.copy
Cells(1,1).select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
application.cutcopymode = false
End Sub
Bookmarks