Ok, I've been trying to understand this but right now I'm stuck. This is the piece of code I've been trying to run to copy / paste
However, this does not work.
Instead I wind up using this:
My confusion is coming from my (lack of) understanding about how objects work. I'm thinking I should be able to access the properties and methods of objects. So to access cells of a page I should be able to use Workbook.Worksheet.Range.Copy format, right? Obviously not, but this is where I'm coming from.
Code:
Sheets("job_tracking").Range("C1").Select
Instead I wind up using this:
Code:
Sheets("job_tracking").Select
Range("C1").Select
Selection.End(xlDown).Select
Selection.Offset(1, 0).Select
Selection.PasteSpecial