Drag Down Forumula's Macro

LionelHutz

New Member
Joined
Apr 1, 2015
Messages
40
Hi,

So I have a macro code that looks like this:

Sub DragDown123()
'
' DragDown123 Macro
'

'
Sheets("Sheet2").Select
Range("B2").Select
ActiveCell.FormulaR1C1 = "=VLOOKUP(RC[-1],Sheet1!C1:C2,2,FALSE)"
Range("B2").Select
Selection.AutoFill Destination:=Range("B2:B5")
Range("B2:B4").Select
Range("A1").Select
ActiveCell.FormulaR1C1 = "Name"
Range("A2").Select
Sheets("Sheet1").Select
End Sub

So this simple macro is apart of a bigger macro that does some stuff and pull a formula down. THe issue is the formula only pulls down to row 5. So if I have data in a6 and on the formula does not drag that far down. For the highlighted green part of my code, is there a formula I can use instead that would auto detect how many rows down column A goes and then drag it down?

EDIT: The above sort of reads funny to me so I will try again...

Is there a way I can get the autofill to auto detect how far it needs to be dragged down based on how many rows in column A have data?
 
Last edited:

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Code:
Sub DragDown123()
  With Worksheets("Sheet2")
    .Range("A1").Value = "Name"
    .Range("B2", Cells(Cells(.Rows.Count, "A").End(xlUp).Row, "B")).FormulaR1C1 = _
    "=vlookup(rc[-1], Sheet1!C1:C2, 2, false)"
  End With
End Sub
 
Last edited:
Upvote 0
Code:
Sub DragDown123()
  With Worksheets("Sheet2")
    .Range("A1").Value = "Name"
    .Range("B2", Cells(Cells(.Rows.Count, "A").End(xlUp).Row, "B")).FormulaR1C1 = _
    "=vlookup(rc[-1], Sheet1!C1:C2, 2, false)"
  End With
End Sub

Awesome! So I duplicated your code to drag down two rows. Is this how to do it or is there a way I can write it to drag down multiple columns?

Sheets("Sheet2").Select
Range("B2").Select
ActiveCell.FormulaR1C1 = "=VLOOKUP(RC[-1],Sheet1!C1:C2,2,FALSE)"
Range("C2").Select
ActiveCell.FormulaR1C1 = "=VLOOKUP(RC[-2],Sheet1!C1:C3,3,FALSE)"
Range("B3").Select
With Worksheets("Sheet2")
.Range("A1").Value = "Name"
.Range("B2", Cells(Cells(.Rows.Count, "A").End(xlUp).Row, "B")).FormulaR1C1 = _
"=vlookup(rc[-1], Sheet1!C1:C2, 2, false)"
End With
With Worksheets("Sheet2")
.Range("A1").Value = "Name"
.Range("C2", Cells(Cells(.Rows.Count, "A").End(xlUp).Row, "C")).FormulaR1C1 = _
"=vlookup(rc[-2], Sheet1!C1:C3, 3, false)"
End With
Range("B2:B4").Select
Range("A1").Select
ActiveCell.FormulaR1C1 = "Name"
Range("A2").Select
Sheets("Sheet1").Select
End Sub
 
Upvote 0
Your first post contained a good explanation of what you were trying to do. This one, not so much.
 
Upvote 0
Your first post contained a good explanation of what you were trying to do. This one, not so much.

Is there a formula to drag multiple columns or do I just duplicate the code like this:

With Worksheets("Sheet2")
.Range("A1").Value = "Name"
.Range("B2", Cells(Cells(.Rows.Count, "A").End(xlUp).Row, "B")).FormulaR1C1 = _
"=vlookup(rc[-1], Sheet1!C1:C2, 2, false)"
End With
With Worksheets("Sheet2")
.Range("A1").Value = "Name"
.Range("C2", Cells(Cells(.Rows.Count, "A").End(xlUp).Row, "C")).FormulaR1C1 = _
"=vlookup(rc[-2], Sheet1!C1:C3, 3, false)"
End With
 
Upvote 0
Code:
Sub DragDown123()
  With Worksheets("Sheet2")
    .Range("A1").Value = "Name"
    .Range("B2", .Cells(.Cells(.Rows.Count, "A").End(xlUp).Row, "B")).Resize(, 2).FormulaR1C1 = _
    "=vlookup(rc[-1], Sheet1!C1:C, column(c), false)"
  End With
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,471
Messages
6,130,822
Members
449,595
Latest member
jhester2010

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