Copying down linked formulas

adamsqh

New Member
Joined
Aug 3, 2010
Messages
2
Hello,

I have several worksheets with linked formulas. I have over 200 rows that I want to paste the linked formulas to, but when I copy down the linked formula is stays the same so I get the same data in each cell. How do I get the formula to change the row # down 1 in witht he copy?

Thanks for your help!
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
what is your formula and exactly where would u want it to be???
try this code, this is example of how it will be in range C
if it does not work maybe you'll have to tell me exactly where you're looking to input the formula.....:biggrin:

Code:
sub adamsqh_try()
[FONT=Bell MT]Dim LR As Long[/FONT]
[FONT=Bell MT]'if you sheet name is different change it accordingly[/FONT]
[FONT=Bell MT][FONT=Bell MT]With Sheets("sheet1")<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p>[/FONT]
[FONT=Bell MT]    LR = .Range("A" & Rows.Count).End(xlUp).Row<o:p></o:p>[/FONT]
[FONT=Bell MT]    .Range("C" & LR).Value = "you formula"[/FONT]
[FONT=Bell MT]End With[/FONT]
[FONT=Bell MT]<o:p>End Sub</o:p>[/FONT]
[FONT=Bell MT]<o:p></o:p>[/FONT] 
[/FONT]
 
Upvote 0
The formula looks like this:

='Member List 10-11 All Basic Inf'!$C$3

when I copy it down I want it to copy it down like $c$4, $c$5, $c$6, etc.

I appreciate your help!
 
Upvote 0

Forum statistics

Threads
1,214,566
Messages
6,120,262
Members
448,953
Latest member
Dutchie_1

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