Hi anyone,
How could I change the following code so that it copies the cell content from active sheet to the sheet data's; starting from last empty row to last data row.
Any help on this would be appreciated.
How could I change the following code so that it copies the cell content from active sheet to the sheet data's; starting from last empty row to last data row.
Code:
Sub Last()
Range("C1").Copy Destination:=Sheets("Dat").Range("B" & r & ":B")
End Sub
Any help on this would be appreciated.