Hiya,
I am a novice in VBA (this is day 2) and wanted to write a script to copy some values from sheet to another and fill down to the last filled row. This is what I have so far:
Dim lRow As Long
lRow = Worksheets("Data").Cells(Worksheets("Data").Rows.Count, "A").End(xlUp).Row
lRow = lRow...