Im trying to find the range on a separate sheet.
Dim abc As Range
Dim size As Integer
size = Sheets("Misc").Cells(1, Sheets("Misc").Cells(1, 1).Rows.End(xlDown).Count)
abc = Sheets("Misc").Range("A1:A" & size)
Im struggling to get the 'size' to give me the count of the rows correctly. What am I doing wrong?