copy named range & paste values

J

J.W. Aldridge

This works great with columns, but now need to copy named range

ActiveCell.EntireColumn.Value = ActiveCell.EntireColumn.Value

(my attempt)

Sub select_range()
Range("zero_range").Select
Copy.Range
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone,
SkipBlanks:= _
False, Transpose:=False
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top