Hello,
In the past I created a Recording Macro that will clear the screen when I use the clear button.
I am making a new copy with a different version. I have a message box as well... But I am trying to copy and paste and change it to work on larger file...
Is there an easier way or to do this.?
Basic thing is to have a easy option to click a button and copy and paste from the back up to each schedule...clear format and words.
Here is what is on another file..
Sub Top()
'
' Top Macro
'
If MsgBox("are you sure?", vbYesNo) = vbYes Then
Range("D4").Select
Sheets("backup").Select
Range("D4:N16").Select
Selection.Copy
Sheets("IPT MEETING SCHEDULE").Select
ActiveSheet.Paste
End If
End Sub
Sub Bottom()
'
' Bottom Macro
'
If MsgBox("are you sure?", vbYesNo) = vbYes Then
Range("B21").Select
Sheets("backup").Select
Range("B21:M33").Select
Selection.Copy
Sheets("IPT MEETING SCHEDULE").Select
ActiveSheet.Paste
End If
End Sub
In the past I created a Recording Macro that will clear the screen when I use the clear button.
I am making a new copy with a different version. I have a message box as well... But I am trying to copy and paste and change it to work on larger file...
Is there an easier way or to do this.?
Basic thing is to have a easy option to click a button and copy and paste from the back up to each schedule...clear format and words.
Here is what is on another file..
Sub Top()
'
' Top Macro
'
If MsgBox("are you sure?", vbYesNo) = vbYes Then
Range("D4").Select
Sheets("backup").Select
Range("D4:N16").Select
Selection.Copy
Sheets("IPT MEETING SCHEDULE").Select
ActiveSheet.Paste
End If
End Sub
Sub Bottom()
'
' Bottom Macro
'
If MsgBox("are you sure?", vbYesNo) = vbYes Then
Range("B21").Select
Sheets("backup").Select
Range("B21:M33").Select
Selection.Copy
Sheets("IPT MEETING SCHEDULE").Select
ActiveSheet.Paste
End If
End Sub