Macro to select & autofill adjacent cells

  • Thread starter Thread starter Tim Soddy
  • Start date Start date
T

Tim Soddy

I would like to create/use a macro that selects a cell to the right of
highlighted cell and the two directly below. I then want to autofil
down this selection. I've tried to record a macro for this, but i
always performs the task at the same range - but I want it to wor
wherever I choose to highlight a cell from. Does anyone know how thi
can be accomplished?

Sincerely,
Ti
 
Hi!

Yes: lots of people will know how;)

Why not post your macro: someone will show you how it can be tuned t
do more than just fill the three cells you recorded it filling.

Al
 
Tim

Sub tester()
ActiveCell.Offset(0, 1).Resize(3, 1).FillDown
End Sub

Gord Dibben Excel MVP
 

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