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

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
How about
Code:
Range("F5").CurrentRegion.Name = "Consolidate1"
 
Upvote 0

Forum statistics

Threads
1,223,214
Messages
6,170,772
Members
452,353
Latest member
strainu

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