ActiveCell Range

redback

New Member
Joined
May 21, 2002
Messages
31
How can I select the active cell and the 20 cells below it using VBA. Below is what I have been using but I want it to function from the active cell instead of A20. Thanks for any help, Jeff.

oSheet.Range("A20:A40").Value = iNumbers
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Hi;

One of the alternatives is;

Range(ActiveCell, Cells(ActiveCell.Row + 20, ActiveCell.Column)).Select
 
Upvote 0
Hi redback,

How about something like this:

<pre>Sub ActiveCellRange()
Dim MyRange As Range

Set MyRange = Range(ActiveCell, ActiveCell.Offset(20, 0))
MyRange.Select

End Sub</pre>
Doesn't do anything useful at the moment, just selects the range! Amend to suit.

HTH
 
Upvote 0

Forum statistics

Threads
1,214,590
Messages
6,120,423
Members
448,961
Latest member
nzskater

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top