I would like help to write a macro that copys data and pastes it on a new sheet always on the next empty row. I have this but it keeps on giving me an error @ " Set emptyCells = Range("A:A").SpecialCells(xlCellTypeBlanks)"
Sheets("accuracy").Select
Range("B23:L29").Select
Selection.Copy
Sheets("Sheet 1").Select
Set emptyCells = Range("A:A").SpecialCells(xlCellTypeBlanks)
Range(emptyCells.Cells(1).Address, emptyCells.Cells(1).Offset(7, 10).Address).Select
ActiveSheet.Paste
Range("C23").Select
Sheets("accuracy").Select
Sheets("accuracy").Select
Range("B23:L29").Select
Selection.Copy
Sheets("Sheet 1").Select
Set emptyCells = Range("A:A").SpecialCells(xlCellTypeBlanks)
Range(emptyCells.Cells(1).Address, emptyCells.Cells(1).Offset(7, 10).Address).Select
ActiveSheet.Paste
Range("C23").Select
Sheets("accuracy").Select