Using Names in Macros

StewartS

Board Regular
Joined
Feb 24, 2002
Messages
217
I am writing a macro which selects a varible range of data and then performs a pivot table on it.

In order to select the range in the pivot table I was going create a name for the range in the macro. I am using varibles to select the first and last cell in the range.

See below

Dim startcell
Dim endcell

Range("A1").Select
startcell = ActiveCell.Address
Selection.End(xlDown).Select
Selection.End(xlRight).Select
endcell = ActiveCell.Address

Range(startcell, endcell).Select
ActiveWorkbook.Names.Add Name:="Data", RefersToR1C1:= _
"=DOWNLOAD!R1C1:R5253C7"

Instead of the "=DOWNLOAD!R1C1:R5253C7" I want to use the startcell, endcell range.

Can anybody help please.

Stewart
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
ActiveWorkbook.Names.Add Name:="Data", RefersToR1C1:= _
selection


Cheers,

Nate
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,561
Members
449,089
Latest member
Motoracer88

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