View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Cesar Zapata[_2_] Cesar Zapata[_2_] is offline
external usenet poster
 
Posts: 66
Default Making a macro run when the user closes a workbook

On the VBE editor,

double click "ThisWorbook"

then use this.

Private Sub Workbook_BeforeClose(Cancel As Boolean)
your macro here
End Sub

Regards,

Cesar Zapata

"KD" wrote in message
...
Is there any way I can get a macro to run automatically
everytime a user closes down the workbook?

Many thanks

KD