I have a macro that copies data from a new worksheet then pastes it into my main workbook. Here is part of the macro I have. How do I make it so it will paste into the first free cell in column A. Also some of the data even though it is just a number has a hyperlink attached to it. When it pastes to my main workbook the hyperlink is not attached. Is there a way to have the hyperlink paste as well with the number.
ActiveWindow.WindowState = xlMinimized
Call LMFDDMACRO
Selection.Copy
ThisWorkbook.Worksheets("LastMile").Range("A3").PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
ActiveWindow.Close SaveChanges:=False
ActiveWindow.WindowState = xlMaximized
ActiveWindow.WindowState = xlMinimized
Call LMFDDMACRO
Selection.Copy
ThisWorkbook.Worksheets("LastMile").Range("A3").PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
ActiveWindow.Close SaveChanges:=False
ActiveWindow.WindowState = xlMaximized