I want to copy the value in the last cell in a column to a cell in another worksheet, and add 1 to it.
I don't know why this code gives a type mismatch error?
I don't know why this code gives a type mismatch error?
VBA Code:
Sub copyValue()
Sheets("Additions").Range("A47").Value = Sheets("Test FAR").Range("A" & Rows.Count).End(xlUp).Value + 1
End Sub