Hi Everyone,
I often have macros that use the same commands with in them
Like copy and paste to "Lastrow" having use something like
Lastrow = Sheets("Hours").Cells(Rows.Count, "A").End(xlUp).Row
Now the problem I get is I find I'm repeating a lot of my core code over and over
I was...