How do i recover Unsaved file

  • Thread starter Thread starter Garry S
  • Start date Start date
G

Garry S

We had a power surge .I didn`t saved my excel file.Is
their a way to recover it .will appreciate any help
Garry
 
Hi
as chip told you: No chance. Maybe you have enabled Autosave but if
not, no chance
 
For future use, use this after each important stage. Creates a backup
directory and backs up to the current directory

Sub Backup() 'kept in personal.xls & assigned to toolbar button
On Error GoTo BackupFile
MkDir CurDir & "\Backup"
BackupFile:
With ActiveWorkbook
MyWB = .Path & "\BACKUP\" & .Name
.SaveCopyAs MyWB
.Save
End With
End Sub
 
Hi Garry..........

If this is something you just created from scratch, you're out of
luck.......if it's something you started by using another file and modified
it, then the other file is probably still there and you could do the
modifications over again........or maybe you emailed someone a copy and
could retrieve it from them?

Vaya con Dios,
Chuck, CABGx3
 
Back
Top