Ejecutar macro de forma automática

Osasas54

New Member
Joined
Sep 10, 2002
Messages
6
Alguien sabe como hacer que una macro se ejecute automáticamente al abrir un libro?, y si se puede hacer también (ejecutar otra) al salir del libro?

Saludos,

Oscar
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Para ejecutar macros al abrir y cerrar un libro, tienes que poner el codigo entre:

Private Sub Workbook_Open()

End Sub


y entre:

Private Sub Workbook_BeforeClose(Cancel As Boolean)

End Sub

respectivamente.

Para encontrar esto tienes que ir al editor de Visual Basic y hacer doble clic en ThisWorkbook (situado a la izquierda, en la ventana Proyecto)
Luego tienes que escojer Workbook en la lista desplegable de arriba. En el otro desplegable estan todos los eventos.

si quieres, en lugar de poner todo el codigo, puedes poner el nombre de la macro. Ejemplo:
Private Sub Workbook_Open()
Macro1
End Sub


Ya esta, esto ejecutara la Macro1 al abrir el libro

Saludos.
 
Upvote 0

Forum statistics

Threads
1,223,929
Messages
6,175,453
Members
452,643
Latest member
gjcase

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top