VBA Code for Consolidation

morz68

New Member
Joined
May 6, 2012
Messages
32
Hello all

I have made some basic code in VBA to generate 2 pivot tables. This works :-)
I have then converted the pivots to values in order to consolidate into one report.

However, I want name the ranges or at the very least in the data consolidate box allow for it to pick up the current region? Any ideas? I've tried recording, but my knowledge is very novice at this stage.

Selection.CurrentRegion.Select
ActiveWorkbook.Names.Add Name:="Consolidate1", RefersToR1C1:= _
"=Sheet1!R5C6:R11C8" (THIS IS WHERE I WOULD LIKE IT TO PICK UP THE CURRENT REGION)
ActiveWorkbook.Names("Consolidate1").Comment = ""
Range("O14").Select
Application.Goto Reference:="Consolidate1"

Thanks
M:)
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
How about
Code:
Range("F5").CurrentRegion.Name = "Consolidate1"
 
Upvote 0

Forum statistics

Threads
1,223,904
Messages
6,175,295
Members
452,632
Latest member
jladair

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