This code will go into the sheet and switch out a cell to a certain function that is linked to the range I am going to copy. Then it will pastevalues on another sheet in a specific cell. I change out ActiveCell (Line 6) with each copy and paste. This code isn't waiting for the cells that will be copied to calculate. Therefore I have the same cell values in my whole worksheet. Any help would be great :) I tried the "Application.Calculate" and that didn't work. This code goes on to copy and paste 100 different tickers for stocks I included five series of codes, but they keep going on to record each stock price.
Sheets("Investing").Select
ActiveWindow.SmallScroll Down:=21
Sheets("Homepage").Select
Range("J2").Select
Application.CutCopyMode = False
ActiveCell.FormulaR1C1 = "=Investing!R[268]C[-9]"
Range("J3").Select
Sheets("Investing").Select
ActiveWindow.SmallScroll Down:=-12
Range("A249:B260").Select
Selection.Copy
Sheets("Daily Strategies").Select
Range("E5").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Homepage").Select
Range("J2").Select
Application.CutCopyMode = False
ActiveCell.FormulaR1C1 = "=Investing!R[269]C[-9]"
Range("J3").Select
Sheets("Investing").Select
Range("A249:B260").Select
Selection.Copy
Range("D283").Select
Sheets("Daily Strategies").Select
Range("G5").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Homepage").Select
Range("J2").Select
Application.CutCopyMode = False
ActiveCell.FormulaR1C1 = "=Investing!R[270]C[-9]"
Range("J3").Select
Sheets("Investing").Select
Range("A249:B260").Select
Selection.Copy
Sheets("Daily Strategies").Select
Range("I5").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Homepage").Select
Range("J2").Select
Application.CutCopyMode = False
ActiveCell.FormulaR1C1 = "=Investing!R[271]C[-9]"
Range("J3").Select
Sheets("Investing").Select
Range("A249:B260").Select
Selection.Copy
Sheets("Daily Strategies").Select
Range("K5").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Homepage").Select
Range("J2").Select
Application.CutCopyMode = False
ActiveCell.FormulaR1C1 = "=Investing!R[272]C[-9]"
Range("J3").Select
Sheets("Investing").Select
Range("A249:B260").Select
Selection.Copy
Sheets("Daily Strategies").Select
Range("M5").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
I