Getting error if linked cell row deleted in different sheet of large data.

babaso_tawase

Board Regular
Joined
Feb 5, 2017
Messages
59
Office Version
  1. 2007
Platform
  1. Windows
I have two excel sheets. Excel sheet 1 having data about 10000 row, in sheet 2 I am doing calculation using different formula. I have given right to delete insert row in sheet1 as it requires. In sheet 2 I have used below formula

abc
1=INDIRECT("'Sheet1'!D"&a1)10=b1*c1
2=INDIRECT("'Sheet1'!D"&a2)20=b2*c2
3=INDIRECT("'Sheet1'!D"&a3)30=b3*c3

above formula used because I can fill down for 10000 row. It work perfectly means after deletion or addition row in sheet 1 no impact on sheet2 data. But problem if data changed in sheet 1 then data in b column in sheet 2 not updating on saving or pressing F9. Is any solution for this?
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
above formula used because I can fill down for 10000 row
With volatile functions (INDIRECT and OFFSET) in 2 columns x 10000 rows doesn't the sheet become pretty sluggish?

I'm not sure I understand exactly what you were doing the caused the problem, but would this non-volatile option in Sheet2 work for you? If it does then sheet performance should improve. If this doesn't work for you then can you detail (examples) just what your are doing so that other non-volatile options might be considered?

babaso_tawase.xlsm
BCD
1100101000
2101202020
3102303060
Sheet2
Cell Formulas
RangeFormula
B1:B3B1=INDEX(Sheet1!D:D,ROW())
D1:D3D1=B1*C1
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,954
Members
449,095
Latest member
nmaske

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