How do i recover Unsaved file

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
 
F

Frank Kabel

Hi
as chip told you: No chance. Maybe you have enabled Autosave but if
not, no chance
 
D

Don Guillett

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
 
C

CLR

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top