I have a range of data (C2:C100) in "sheet2". I want to copy, individually, paste into cell A2 of worksheet "Detailed LOC", copy results from (A2:K2) of "Detailed LOC", and paste (value only) into (A2:K2) for first value, (A3:K3) for second, and so on) of worksheet "All LOC". I've read that copy/paste are intensive, but the formulas in cells (A1:D1) in sheet2 are complicated, and I'm only wanting the values they produce in the resulting paste in "All LOC". I recorded the macro for what I want it to do, for the first cell in the range from "sheet2". I'm unsure of how to integrate the loop to get it repeat for the entire range of "sheet2", aswell as how to get it to paste the results in "ALL LOC" in descending rows. Note the step that takes place in "ALL LOC" always occurs in the 2nd row (A2:K2), not descending rows. Thanks for any help/advice.
Range("C2").Select
Selection.Copy
Sheets("Detailed LOC").Select
Range("A2").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("A2:K2").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("All Loc").Select
Range("A2").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Sheet2").Select
Range("A1").Select