Run macro automatically on opening of worksheet

B

bnkone

I have a macro I would like to run automatically when the worksheet is
opened. I know I have done this long ago but I don't remember how I did it.

Any ideas out there?
 
L

L. Howard Kittle

In the ThisWorkbook code module:

Private Sub Workbook_Open()

End Sub

HTH
Regards,
Howard
 
Top