Hi,
When I suggested Dynamic Named Ranges - here is an example.
On your Summary Sheet you have a formula in E3: of
=+SUM(INDEX('PIVOT-2'!$B$6:$I$58,0,ROWS(E$3:E3)))
You said that this range will expand and the $B$6:$J$58 will get bigger as more rows are added to the Pivot Table.
If you define a Dynamic Named Range of
Pvt2Data = OFFSET('PIVOT-2'!$B$6,0,0,COUNTA('PIVOT-2'!$B:$B),COUNTA('PIVOT-2'!$5:$5))
Then in your formula above instead of using the Static Range you replace it with the name and it becomes:
=+SUM(INDEX(Pvt2Data,0,ROWS(E$3:E3)))
Now when your pivot table data grows the Dynamic Named Range of Pvt2Data also grows and all your formulas continue to work.
Looking at some of your CSE formulas, you may need to create a few Dynamic Named Ranges to have them continue to work.
I hope this helps explain where I was going.
http://www.ozgrid.com/Excel/advanced-dynamic-ranges.htm for more examples.
Bookmarks