End down

  • Thread starter Thread starter Bill Ridgeway
  • Start date Start date
B

Bill Ridgeway

Using Lotus 123 emulation it is possible to copy the contents of a cell(s)
using <end><down> to the last cell in the spreadsheet. Although this takes
longer than a copy/ paste in its actual execution, for a large spread sheet
it is actually shorter than copy-highlighting-pasting over a very large
range of cells.

Is there a quick way to copy the contents of a cell over a large range of
cells??

Regards.

Bill Ridgeway
 
Bill

One way, using code

Sub testcopy()
Dim rng As Range
Set rng = Range("B6:D6")
rng.Copy Range("d7:d12")
End Sub

Formulas are copied with relative references. Change range
to suit.

Regards
Pter
 

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

Back
Top