I've gone through my efforts here and tried something new, but I have an annoying screen flicker (I assume that the macro is quickly jumping back and forth between sheets, before returning me to my first sheet. Is there a way to prevent that from happening?
Sub Defending_Blue_2()
Range("C83").Select
Selection.Copy
Sheets("Forecast").Select
Range("A5").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Battling_Teams").Select
Range("C3").Select
Selection.Copy
Sheets("Forecast").Select
Range("A6").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Battling_Teams").Select
Application.CutCopyMode = False
End Sub
Bookmarks