Thread
:
to Copy the Entire Row
View Single Post
#
2
Posted to microsoft.public.excel.programming
Don Guillett
external usenet poster
Posts: 10,124
to Copy the Entire Row
Sub makerowvalues()
ActiveCell.EntireRow.Value = ActiveCell.EntireRow.Value
or
ActiveCell.offset(1).EntireRow.Value = ActiveCell.EntireRow.Value
End Sub
--
Don Guillett
SalesAid Software
"Steved" wrote in message
...
Hello from Steved
How would I modify please the below to copy an entire row Thankyou.
Sub Broken()
Selection.EntireRow.Insert
ActiveCell.Offset(1, 0).Copy
ActiveCell.PasteSpecial
End Sub
Reply With Quote
Don Guillett
View Public Profile
Find all posts by Don Guillett