Data consolidation? - RePost

gidsy

Board Regular
Joined
Jan 13, 2005
Messages
142
Hi There,

I have a consolidation sheet that uses Data Condolidation to sum 5 sheets.

This works fine and I have a button that is attached to this macro...

ActiveSheet.Unprotect
Range("B7").Select
Selection.Consolidate Sources:=Array( _
"'Accounts Analysis (2)'!R7C2:R71C9" _
, _
"'Accounts Analysis (3)'!R7C2:R71C9" _
, _
"'Accounts Analysis (4)'!R7C2:R71C9" _
, _
"'Accounts Analysis (5)'!R7C2:R71C9" _
, _
"'Accounts Analysis (6)'!R7C2:R71C9" _
), Function:=xlSum, TopRow:=False, LeftColumn:=False, CreateLinks:= _
False

The users would like to be able to change the names of the sheets that are used in the aggregation. If they change the sheet name the consolidation macro won't work.

Is there a way I can still use data consolidation and still let the users change the sheet names?
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Sorry to re-post...

Still keen to hear from anyone who knows how to do this...

I have a consolidation sheet that uses Data Condolidation to sum 5 sheets.

This works fine and I have a button that is attached to this macro...

ActiveSheet.Unprotect
Range("B7").Select
Selection.Consolidate Sources:=Array( _
"'Accounts Analysis (2)'!R7C2:R71C9" _
, _
"'Accounts Analysis (3)'!R7C2:R71C9" _
, _
"'Accounts Analysis (4)'!R7C2:R71C9" _
, _
"'Accounts Analysis (5)'!R7C2:R71C9" _
, _
"'Accounts Analysis (6)'!R7C2:R71C9" _
), Function:=xlSum, TopRow:=False, LeftColumn:=False, CreateLinks:= _
False

The users would like to be able to change the names of the sheets that are used in the aggregation. If they change the sheet name the consolidation macro won't work.

Is there a way I can still use data consolidation and still let the users change the sheet names?
 
Upvote 0

Forum statistics

Threads
1,215,043
Messages
6,122,812
Members
449,095
Latest member
m_smith_solihull

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