so i've got a sheet where i'm copying and pasting data from another sheet to form a list.
The problem is that the selection (a 5x3 area) could have from 1 entry per row to 5 so could have as much as 4 blank rows. Then when I come to using the macro again, using xlDown it counts those blank cells as if they have data in them and pastes the new data further down the column rather than the end of the current data.
Here's the code I have but I don't think this is the problem.
Range("A25:C29").Select
Selection.Copy
Sheets("Player database").Select
Range("N1").Select
Selection.End(xlDown).Select
ActiveCell.Offset(1).Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
Range("N1").Select
Sheets("SCORECARD").Select
Range("A1").Select
Bookmarks