Hi, I have this Macro where it select a range and paste it on a specific cell, is there a way it can do it on the following of the last row.
Sub CopiaDetalle()
Dim rng As Range
Ultimafila = Range("C" & Rows.Count).End(xlUp).Row
With Sheets("U-Detail")
Set rng = Range("C11:AC" & Ultimafila)
rng.Copy
Worksheets("Detail").Range("C11").PasteSpecial xlPasteValues
End With
End Sub
Sub CopiaDetalle()
Dim rng As Range
Ultimafila = Range("C" & Rows.Count).End(xlUp).Row
With Sheets("U-Detail")
Set rng = Range("C11:AC" & Ultimafila)
rng.Copy
Worksheets("Detail").Range("C11").PasteSpecial xlPasteValues
End With
End Sub