In your formulas in sheet 1, use the INDIRECT function if you want your formula to always refer to the same row numbers (regardless of whether you insert rows or not).
So, say your function in sheet 1 is now:
=SUM(Sheet2!$A$2:$A$50),
Try this instead:
=SUM(INDIRECT("Sheet2!$A$2:$A$50"))
Hope this helps,
Russell
p.s. I got this idea off of microsoftexceltraining.com - Dave Hawley's site - some good stuff there.
Hi Russell, That doesn't seem to work for me. I am not summing. I am referring one cell to one cell. I took away the SUM from your solution, and it didn't work properly. I looked INDIRECT up in help, and it states that it is a way to link (Sheet 1) to a cell (in Sheet 2) and then have that cell referenced to another cell....which is the ultimate cell that displays in Sheet1. Please correct me if I am wrong or just royaly confused.....Thanks for the help...
Stacy
Please paste your formula. Thank you. Hi Russell, That doesn't seem to work for me. I am not summing. I am referring one cell to one cell. I took away the SUM from your solution, and it didn't work properly. I looked INDIRECT up in help, and it states that it is a way to link (Sheet 1) to a cell (in Sheet 2) and then have that cell referenced to another cell....which is the ultimate cell that displays in Sheet1. Please correct me if I am wrong or just royaly confused.....Thanks for the help... Stacy
The "regular" way that I do it is in a Sheet called 'Jan' I have the following: 'Paste Chart'!$I$14
If I go to the sheet called 'Paste Chart' and insert a row above I14, my cell reference in 'Jan' gets changed to $I$15.
Thanks for your time!! Please paste your formula. Thank you. : Hi Russell, That doesn't seem to work for me. I am not summing. I am referring one cell to one cell. I took away the SUM from your solution, and it didn't work properly. I looked INDIRECT up in help, and it states that it is a way to link (Sheet 1) to a cell (in Sheet 2) and then have that cell referenced to another cell....which is the ultimate cell that displays in Sheet1. Please correct me if I am wrong or just royaly confused.....Thanks for the help... : Stacy
This should work (it does for me):
=INDIRECT("'Paste Chart'!I14")
There isn't even a need for the absolute references in this case! (The dollar signs).
Hope this helps,
Russell