You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
496 B
Plaintext
18 lines
496 B
Plaintext
Sub Copy_Projectinfo()
|
|
'
|
|
' Copy_Projectinfo Macro
|
|
' Sheets("Project Information").Select
|
|
Sheets("Copy_Projectinfo").Visible = True
|
|
Sheets("Project Information").Select
|
|
Range("B11:K85").Select
|
|
Selection.Copy
|
|
Sheets("Copy_Projectinfo").Select
|
|
Range("A1").Select
|
|
ActiveSheet.Paste
|
|
Range("L1").Select
|
|
Sheets("Project Information").Select
|
|
ActiveWindow.SmallScroll Down:=-51
|
|
Range("B1").Select
|
|
Application.CutCopyMode = False
|
|
End Sub
|