Copy Down & Auto increment formula

NeoSez

Board Regular
Joined
Aug 14, 2020
Messages
210
Office Version
  1. 2019
  2. 2010
Platform
  1. Windows
I hav a spreadhset with columns of different formulas similar to this formula
Excel Formula:
=IFERROR(__xludf.DUMMYFUNCTION("GoogleFinance($A2+1)"),52.4)
The problem is when I copy the formulas down, the $A2 should be changing to $A3, $A4, $A5 etcetera. I tried dragging it down, Goto and none of it is working. I don't want to manually change this for hundreds of rows and cells and columns.
How do I get the cell reference to change?
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Try

Excel Formula:
=IFERROR(__xludf.DUMMYFUNCTION("GoogleFinance(" &$A2& "+1)"),52.4)
 
Upvote 0
Solution
Try

Excel Formula:
=IFERROR(__xludf.DUMMYFUNCTION("GoogleFinance(" &$A2& "+1)"),52.4)
Thank you Yongle
I had tried the formula as
Excel Formula:
=IFERROR(__xludf.DUMMYFUNCTION("GoogleFinance(" &$A2&+1)),52.4)
but it failed. Those "" get me every time.
 
Upvote 0

Forum statistics

Threads
1,215,042
Messages
6,122,810
Members
449,095
Latest member
m_smith_solihull

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