Hoping someone can help me here..... im new so go easy on me! ;-)
Ive got 2 sheets - 1 "LINK" and 2 "RAW Data"
Now what I want the macro to do is copy data from the "LINK" sheet and put it into the correct columns in the "raw data sheet" - however when the macro is complete, it appears to be putting data in the wrong column (Should start in Column B - Raw Data) - but is replacing data in column A.....Is that because the data Im copying from "LINK" starts in column A?
Is this something to do with it referencing the active window? Is there a way to hard code it so it always checks from rows 4-750 (as data will fluctuate between that many rows).
Please advise
I'm simply turning the macro on and recording a copy, paste special values & formats - here is a clip of beginning of the code it has created.
Range("A5:C5").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Sheets("RAW Data").Select
Range("B4").Select
Selection.PasteSpecial _
Paste:=xlPasteValuesAndNumberFormats, _
Operation:= _ xlNone, _
SkipBlanks:=False, _
Transpose:=False
Range("E4").Select
Sheets("LINK").Select
Range("E5:F5").Select