Can't paste info to first empty cell
Tried a lot of different options found online, can't get it right for my situation.
Sub cop()
Dim LastRow As Long
Dim x As Range
Sheets("1").Select
Range("A2").Select
Range(Selection, Selection.End(xlToRight)).Select
Range(Selection, Selection.End(xlDown)).Select
Selection.copy
Sheets("Data Validation").Select
Range("A2").Select
ActiveSheet.Paste
'finds the last row in the Holdings report worksheet
LastRow = ActiveSheet.Cells.find(What:="*", After:=ActiveSheet.Cells(1,
1), LookIn:=xlFormulas, LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlPrevious,
MatchCase:=False).Row
x = (LastRow + 1)
Sheets("2").Select
Range("A2").Select
Range(Selection, Selection.End(xlToRight)).Select
Range(Selection, Selection.End(xlDown)).Select
Selection.copy
Sheets("Data Validation").Select
Range(x, 1).Select
ActiveSheet.Paste
End Sub
I want to copy from worksheet '2', and place the data on column A in the Data Validation sheet, at the first row that is blank (underneath the data that was previously pasted there from worksheet '1'.