ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Accessing a macro created named range (https://www.excelbanter.com/excel-programming/423464-accessing-macro-created-named-range.html)

John

Accessing a macro created named range
 
I am using the following code in a macro to set up a named range on a
worksheet for use by other macros. I create the named range with the
following code:

ThisWorkbook.Names.Add Name:="Table1", RefersTo:=NewSheetName & "!$B$9:$H$500"

The new named range appears fine in the Developer Name Manager list, but
does not appear in the Name Box drop down list and I code such as
i = Range("_PAI_Table_bbb").Rows.Count
that uses Table1 errors w/ a 1004 range of object _Global failed.

Somehow I'm either not creating the range properly and/or I'm not
referencing it correctly.

I appreciate your help, -John

OssieMac

Accessing a macro created named range
 
Hi again John,

I had another look to see exactly what was occurring. When naming the range
with your code if you go to name manager and select the name then in the
Refers to field you will see double quotes around the sheet name and range
like this.

="MyTestSheet!$B$9:$H$500"

If you create the named range manually then you will see that the double
quotes are not there like this.

=MyTestSheet!$B$9:$H$500

The code that I have given you will create the named range correctly without
the double quotes.

I have no idea why xl does not error out with your creation code. Just one
of those thing I suppose.


--
Regards,

OssieMac


"OssieMac" wrote:

Hi John,

Syntax for naming the range is incorrect. It does appear to name the range
but not properly and it appears that xl does not error out on it. Try this.

Dim newSheetName As String
Dim i As Long

newSheetName = "MyTestSheet"

ActiveWorkbook.Names.Add Name:="Table1", _
RefersTo:=Sheets(newSheetName).Range("$B$9:$H$500" )

i = Range("Table1").Rows.Count

--
Regards,

OssieMac


"John" wrote:

I am using the following code in a macro to set up a named range on a
worksheet for use by other macros. I create the named range with the
following code:

ThisWorkbook.Names.Add Name:="Table1", RefersTo:=NewSheetName & "!$B$9:$H$500"

The new named range appears fine in the Developer Name Manager list, but
does not appear in the Name Box drop down list and I code such as
i = Range("_PAI_Table_bbb").Rows.Count
that uses Table1 errors w/ a 1004 range of object _Global failed.

Somehow I'm either not creating the range properly and/or I'm not
referencing it correctly.

I appreciate your help, -John


OssieMac

Accessing a macro created named range
 
Hi John,

Syntax for naming the range is incorrect. It does appear to name the range
but not properly and it appears that xl does not error out on it. Try this.

Dim newSheetName As String
Dim i As Long

newSheetName = "MyTestSheet"

ActiveWorkbook.Names.Add Name:="Table1", _
RefersTo:=Sheets(newSheetName).Range("$B$9:$H$500" )

i = Range("Table1").Rows.Count

--
Regards,

OssieMac


"John" wrote:

I am using the following code in a macro to set up a named range on a
worksheet for use by other macros. I create the named range with the
following code:

ThisWorkbook.Names.Add Name:="Table1", RefersTo:=NewSheetName & "!$B$9:$H$500"

The new named range appears fine in the Developer Name Manager list, but
does not appear in the Name Box drop down list and I code such as
i = Range("_PAI_Table_bbb").Rows.Count
that uses Table1 errors w/ a 1004 range of object _Global failed.

Somehow I'm either not creating the range properly and/or I'm not
referencing it correctly.

I appreciate your help, -John


Peter T

Accessing a macro created named range
 
Probably the variable NewSheetName does not refer to the string name of a
worksheet in ThisWorkbook.

Regards,
Peter T


"John" wrote in message
...
I am using the following code in a macro to set up a named range on a
worksheet for use by other macros. I create the named range with the
following code:

ThisWorkbook.Names.Add Name:="Table1", RefersTo:=NewSheetName &
"!$B$9:$H$500"

The new named range appears fine in the Developer Name Manager list, but
does not appear in the Name Box drop down list and I code such as
i = Range("_PAI_Table_bbb").Rows.Count
that uses Table1 errors w/ a 1004 range of object _Global failed.

Somehow I'm either not creating the range properly and/or I'm not
referencing it correctly.

I appreciate your help, -John




OssieMac

Accessing a macro created named range
 
Hi Peter and John,

Just for interest, the way John had coded the sheetname and range is missing
the leading equal (=) sign in the concatenated string.

VBA has then placed double quotes around the entire string which made the
reference invalid.

The method I posted does not need concatenation and I think is easier to
code. However, if coding with John's method then it should be like this.

ThisWorkbook.Names.Add Name:="Table1", RefersTo:= _
"=" & newSheetName & "!$B$9:$H$500"

--
Regards,

OssieMac



Peter T

Accessing a macro created named range
 
Yes you are right. At best, my suggestion was incomplete.

Regards,
Peter T

"OssieMac" wrote in message
...
Hi Peter and John,

Just for interest, the way John had coded the sheetname and range is
missing
the leading equal (=) sign in the concatenated string.

VBA has then placed double quotes around the entire string which made the
reference invalid.

The method I posted does not need concatenation and I think is easier to
code. However, if coding with John's method then it should be like this.

ThisWorkbook.Names.Add Name:="Table1", RefersTo:= _
"=" & newSheetName & "!$B$9:$H$500"

--
Regards,

OssieMac





Dave Peterson

Accessing a macro created named range
 
I find that this syntax is easier to use:

worksheets(newsheetname).range("b9:h500").name = "Table1"
(for a workbook name)

or

with worksheets(newsheetname)
.range("b9:h500").name = "'" & .name & "'!Table1"
end with
(for a worksheet level name)


John wrote:

I am using the following code in a macro to set up a named range on a
worksheet for use by other macros. I create the named range with the
following code:

ThisWorkbook.Names.Add Name:="Table1", RefersTo:=NewSheetName & "!$B$9:$H$500"

The new named range appears fine in the Developer Name Manager list, but
does not appear in the Name Box drop down list and I code such as
i = Range("_PAI_Table_bbb").Rows.Count
that uses Table1 errors w/ a 1004 range of object _Global failed.

Somehow I'm either not creating the range properly and/or I'm not
referencing it correctly.

I appreciate your help, -John


--

Dave Peterson

John

Accessing a macro created named range
 
Ossie and Peter, thx so much! This worked great! I really appreciate your
help, John

"John" wrote:

I am using the following code in a macro to set up a named range on a
worksheet for use by other macros. I create the named range with the
following code:

ThisWorkbook.Names.Add Name:="Table1", RefersTo:=NewSheetName & "!$B$9:$H$500"

The new named range appears fine in the Developer Name Manager list, but
does not appear in the Name Box drop down list and I code such as
i = Range("_PAI_Table_bbb").Rows.Count
that uses Table1 errors w/ a 1004 range of object _Global failed.

Somehow I'm either not creating the range properly and/or I'm not
referencing it correctly.

I appreciate your help, -John



All times are GMT +1. The time now is 04:12 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com