Prevent Cell Reference Incrementing

gibbsak

New Member
Joined
Nov 24, 2009
Messages
12
I am working in a multi sheet workbook. I have a "master" table created on one sheet with subsequent sheets referencing the "master" using a formula series along the lines of 'Sheet1'!A5='Master!'A5

If I insert a row, above A5 in the 'master' sheet, the formula series in 'Sheet1' automatically increments the references for ever formula in the series for a5 and below so that is now reads: 'Sheet1'!A5='Master!'A6

I would like to avoid this. No matter what, I would like 'Sheet1'!A5='Master!'A5 to always appear no matter how many rows I insert above
'Master!'A5. I also have a similar Formula series in another sheet: 'Sheet2'!A5='Master!'A105; 'Sheet3'!A5='Master!'A205; and so on.

Is there a way to prevent the formula series from incrementing automatically? Using $A$5 would not be practical as there are so many cells.

Thank you for any help.
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Use absolute refeerencing, or hard code it into the Address function, then use indirect to refer to that

Excel Workbook
A
5Total
6
7Total
8Total
9Total
10Total
11Total
12Total
13Total
14Total
Sheet2
Excel 2010
Cell Formulas
RangeFormula
A7=INDIRECT(ADDRESS(5,1))
A8=INDIRECT(ADDRESS(5,1))
A9=INDIRECT(ADDRESS(5,1))
A10=INDIRECT(ADDRESS(5,1))
A11=INDIRECT(ADDRESS(5,1))
A12=INDIRECT(ADDRESS(5,1))
A13=INDIRECT(ADDRESS(5,1))
A14=INDIRECT(ADDRESS(5,1))

Dragging down or inserting a blank row won't change the cell thats being referenced
 
Last edited:
Upvote 0
How do I reference a differnt sheet with that method? Also, I would like to be able to make it a formula series:

=INDIRECT(ADDRESS(3,1))
=INDIRECT(ADDRESS(4,1))
 
Upvote 0

Forum statistics

Threads
1,224,597
Messages
6,179,808
Members
452,944
Latest member
2558216095

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