Like to run macro once, whoops forgot to send macro
Posted by Ken on November 08, 2001 1:29 PM
I am posting my message again I forgot to post the macro. I need this macro to not run endlessly between Sheet1 and Sheet2 on Sheet2's activation. Thank you very much.
Private Sub Worksheet_Activate()
Sheets("Sheet1").Select
Selection.Copy
Sheets("Sheet2").Select
ActiveSheet.Paste
Sheets("Sheet2").Range("A1").Select
Application.CutCopyMode = False
End Sub
Ken