selection range

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Have the following:
Range(Selection, Selection.End(xlDown) - 1).Select
Selection.FillDown
Selection.End(xlDown).Select

This is selecting everything to the next value in a list (I then filldown).
Need it to go to the value and then subtract 1 row from the range (so the
filldown does not overwrite the next value in the list).

Thanks.
 
Maybe...

Range(Selection, Selection.End(xlDown).offset(-1)).Select
 

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