
Tips.Net > ExcelTips Home > Formulas > Non-adjusting References in Formulas
Summary: Insert and delete cells and Excel will routinely modify the formulas affected by those edits. You may not want the references in those formulas to be changed. This tip explains how you can create a formula that won’t be affected by the edits you routinely make. (This tip works with Microsoft Excel 97, Excel 2000, Excel 2002, and Excel 2003.)
Everybody knows you can enter a formula in Excel. (What would a spreadsheet be without formulas, after all?) If you use address references in a formula, those references are automatically updated if you insert or delete cells, rows, or columns and those changes affect the address reference in some way. Consider, for example, the following simple formula:
=IF(A7=B7,"YES","NO")
If you insert a cell above B7, then the formula is automatically adjusted by Excel so that it appears like this:
=IF(A7=B8,"YES","NO")
What if you don't want Excel to adjust the formula, however? You might try adding some dollar signs to the address, but this only affects addresses in formulas that are later copied; it doesn't affect the formula itself if you insert or delete cells that affect the formula.
The best way to make the formula references "non-adjusting" is to modify the formula itself to use different worksheet functions. For instance, you could use this formula in cell C7:
=IF(INDIRECT("A"&ROW(C7))=INDIRECT("B"&ROW(C7)),"YES","NO")
What this formula does is to construct an address based on whatever cell the formula appears in. The ROW function returns the row number of the cell (C7 in this case, so the value 7 is returned) and then the INDIRECT function is used to reference the constructed address, such as A7 and B7. If you insert (or delete) cells above A7 or B7, the reference in cell C7 is not disturbed, as it just blithely constructs a brand new address.
Another approach is to use the OFFSET function to construct a similar type of reference:
=IF(OFFSET($A$1,ROW()-1,0)=OFFSET($B$1,ROW()-1,0),"YES","NO")
This formula simply looks at where it is (in column C) and compares the values in the cells that are to its left. This formula is similarly undisturbed if you happen to insert or delete cells in either column A or B.
A final approach (and perhaps the slickest one) is to use named formulas. This is a feature of Excel's naming capabilities that is rarely used by most people. Follow these steps:
=IF(A2=B2,"YES","NO")
At this point you've created your named formula. You can now use it in any cell in column C in this manner:
=CompareMe
It compares whatever is in the two cells to its left, just as your original formula was designed to do. Better still, the formula is not automatically adjusted as you insert or delete cells.
Tip #2876 applies to Microsoft Excel versions: 97 2000 2002 2003
PivotTables Got You Perplexed? ExcelTips: PivotTables for the Faint of Heart shows how you can start using Excel's PivotTable tool right away to spin your data into gold! You discover how easy it really is to crunch the numbers you need to crunch. Uncover the power of the PivotTable Wizard, how to edit PivotTables, how to format them, how to customize them, and much more.
Check out ExcelTips: PivotTables for the Faint of Heart today!
Want to make Excel do even more? The way is easy when you know how to use macros. This great e-book makes it easy. (more information...)
Ask an Excel Question
Make a Comment
ExcelTips FAQ
ExcelTips Premium
Beauty Tips
Bugs and Pests Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pet Tips
Word2007 Tips
WordTips
Advertise on the
ExcelTips Site