Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
JNW JNW is offline
external usenet poster
 
Posts: 480
Default Maximum number of named ranges?

Does anyone know the maximum number of named ranges allowed in xl03 and xl07?

Thanks!
--
JNW
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,939
Default Maximum number of named ranges?

More than you could ever reasonably hope to manage... That is more of an
editorial than an answer but I can not think of a circumstance where I would
run into the limit. What are you up to that you want to know the limit???
--
HTH...

Jim Thomlinson


"JNW" wrote:

Does anyone know the maximum number of named ranges allowed in xl03 and xl07?

Thanks!
--
JNW

  #3   Report Post  
Posted to microsoft.public.excel.programming
JNW JNW is offline
external usenet poster
 
Posts: 480
Default Maximum number of named ranges?

~500 right now, but could envision hitting upwards of 5k. I figure I'm more
than safe in 07 since they've all but done away with most memory limitations.
I'm more worried about xl03.

Along the same lines, any known speed issues with named ranges? Is is
faster/slower? (code and worksheet references)
--
JNW


"Jim Thomlinson" wrote:

More than you could ever reasonably hope to manage... That is more of an
editorial than an answer but I can not think of a circumstance where I would
run into the limit. What are you up to that you want to know the limit???
--
HTH...

Jim Thomlinson


"JNW" wrote:

Does anyone know the maximum number of named ranges allowed in xl03 and xl07?

Thanks!
--
JNW

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,494
Default Maximum number of named ranges?

Names in a workbook Limited by available memory


http://office.microsoft.com/en-us/as...992911033.aspx


--


Gary


"JNW" wrote in message
...
Does anyone know the maximum number of named ranges allowed in xl03 and xl07?

Thanks!
--
JNW



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 63
Default Maximum number of named ranges?

I too would like to see some discussion concerning speed comparisons
between using named ranges and specified cell ranges.
I use a lot of named ranges in all the Excel applications I develop to
make things easier to debug visually and to make a bit of "human
sense" of it all.

Dennis



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 968
Default Maximum number of named ranges?

Since named ranges involve Excel doing more work they are slower than direct
references.

I have used workbooks with more than 50K names (xl97-xl07), but I would not
recommend it. Personally I would feel comfortable with up to 5K names and
with that kind of volume you probably wont hit any speed problem unless they
are all dynamic ranges or other named formulae.

Presumably you are using our Name Manager ...
http://www.decisionmodels.com/downloads.htm

Charles
__________________________________________________
Outlines for my Sessions at the Australia Excel Users Group
http://www.decisionmodels.com/OZEUC.htm

"JNW" wrote in message
...
~500 right now, but could envision hitting upwards of 5k. I figure I'm
more
than safe in 07 since they've all but done away with most memory
limitations.
I'm more worried about xl03.

Along the same lines, any known speed issues with named ranges? Is is
faster/slower? (code and worksheet references)
--
JNW


"Jim Thomlinson" wrote:

More than you could ever reasonably hope to manage... That is more of an
editorial than an answer but I can not think of a circumstance where I
would
run into the limit. What are you up to that you want to know the limit???
--
HTH...

Jim Thomlinson


"JNW" wrote:

Does anyone know the maximum number of named ranges allowed in xl03 and
xl07?

Thanks!
--
JNW



  #7   Report Post  
Posted to microsoft.public.excel.programming
JNW JNW is offline
external usenet poster
 
Posts: 480
Default Maximum number of named ranges?

Thanks Charles

I haven't used NameManager yet, but I think I'll start. Looks useful.

I'm using the named ranges for range that I have to refer to in the code.
The client loves to add columns and rows and generally mess with the format.
Using the names helps me not have to update the code everytime they want a
structure change. Any other methods out there that I have overlooked?

Thanks again.
--
JNW


"Charles Williams" wrote:

Since named ranges involve Excel doing more work they are slower than direct
references.

I have used workbooks with more than 50K names (xl97-xl07), but I would not
recommend it. Personally I would feel comfortable with up to 5K names and
with that kind of volume you probably wont hit any speed problem unless they
are all dynamic ranges or other named formulae.

Presumably you are using our Name Manager ...
http://www.decisionmodels.com/downloads.htm

Charles
__________________________________________________
Outlines for my Sessions at the Australia Excel Users Group
http://www.decisionmodels.com/OZEUC.htm

"JNW" wrote in message
...
~500 right now, but could envision hitting upwards of 5k. I figure I'm
more
than safe in 07 since they've all but done away with most memory
limitations.
I'm more worried about xl03.

Along the same lines, any known speed issues with named ranges? Is is
faster/slower? (code and worksheet references)
--
JNW


"Jim Thomlinson" wrote:

More than you could ever reasonably hope to manage... That is more of an
editorial than an answer but I can not think of a circumstance where I
would
run into the limit. What are you up to that you want to know the limit???
--
HTH...

Jim Thomlinson


"JNW" wrote:

Does anyone know the maximum number of named ranges allowed in xl03 and
xl07?

Thanks!
--
JNW




  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default Maximum number of named ranges?

I'm hitting a limit as well. See the posting: Limit (not memory) consumed
by Range Names, UDF calls, VB code, st

"JNW" wrote:

Does anyone know the maximum number of named ranges allowed in xl03 and xl07?

Thanks!
--
JNW

  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,494
Default Maximum number of named ranges?


http://office.microsoft.com/en-us/ex...992911033.aspx
--


Gary

"Dean Meyer" wrote in message
...
I'm hitting a limit as well. See the posting: Limit (not memory) consumed
by Range Names, UDF calls, VB code, st

"JNW" wrote:

Does anyone know the maximum number of named ranges allowed in xl03 and xl07?

Thanks!
--
JNW



  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 28
Default Maximum number of named ranges?

The maximum Named range in a workbook is limited by available memory.

Please Refer: http://office.microsoft.com/en-us/ex...992911033.aspx


I hope this helps.

Selva V Pasupathy
For more on Excel, VBA, and other resources
Please visit: http://socko.wordpress.com


  #11   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default Maximum number of named ranges?

Just out of curiosity, how many names do you have?

Cordially,
Chip Pearson
Microsoft MVP
Excel Product Group
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)

On Wed, 17 Dec 2008 07:57:12 -0800, Dean Meyer
wrote:

I'm hitting a limit as well. See the posting: Limit (not memory) consumed
by Range Names, UDF calls, VB code, st

"JNW" wrote:

Does anyone know the maximum number of named ranges allowed in xl03 and xl07?

Thanks!
--
JNW

  #12   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 968
Default Maximum number of named ranges?

I don't know what the limit actually is, but I have seen useable workbooks
with over 50000 Defined Names

(personally I would not recommend using this many ...)

There used to be a limit on the depth of recursion allowed (names referring
to names referring to names ...),
not sure if this has been extended in Excel 2007.

Charles
___________________________________
London Excel Users Conference April 1-2
The Excel Calculation Site
http://www.decisionmodels.com

"Dean Meyer" wrote in message
...
I'm hitting a limit as well. See the posting: Limit (not memory)
consumed
by Range Names, UDF calls, VB code, st

"JNW" wrote:

Does anyone know the maximum number of named ranges allowed in xl03 and
xl07?

Thanks!
--
JNW




  #13   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,600
Default Maximum number of named ranges?

I did check a while ago following protestations from someone in this ng and
for me there was absolute limit of 64k names (ie 65,536).

I don't quite recall if that was how many could be saved rather than
created, either way that was the limit.

Regards,
Peter T

"Charles Williams" wrote in message
...
I don't know what the limit actually is, but I have seen useable workbooks
with over 50000 Defined Names

(personally I would not recommend using this many ...)

There used to be a limit on the depth of recursion allowed (names
referring to names referring to names ...),
not sure if this has been extended in Excel 2007.

Charles
___________________________________
London Excel Users Conference April 1-2
The Excel Calculation Site
http://www.decisionmodels.com

"Dean Meyer" wrote in message
...
I'm hitting a limit as well. See the posting: Limit (not memory)
consumed
by Range Names, UDF calls, VB code, st

"JNW" wrote:

Does anyone know the maximum number of named ranges allowed in xl03 and
xl07?

Thanks!
--
JNW






  #14   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 968
Default Maximum number of named ranges?

Hi Peter,

Sounds reasonable to me, I will have to to try to break the 64K barrier!

Charles
___________________________________
London Excel Users Conference April 1-2
The Excel Calculation Site
http://www.decisionmodels.com

"Peter T" <peter_t@discussions wrote in message
...
I did check a while ago following protestations from someone in this ng and
for me there was absolute limit of 64k names (ie 65,536).

I don't quite recall if that was how many could be saved rather than
created, either way that was the limit.

Regards,
Peter T

"Charles Williams" wrote in message
...
I don't know what the limit actually is, but I have seen useable workbooks
with over 50000 Defined Names

(personally I would not recommend using this many ...)

There used to be a limit on the depth of recursion allowed (names
referring to names referring to names ...),
not sure if this has been extended in Excel 2007.

Charles
___________________________________
London Excel Users Conference April 1-2
The Excel Calculation Site
http://www.decisionmodels.com

"Dean Meyer" wrote in message
...
I'm hitting a limit as well. See the posting: Limit (not memory)
consumed
by Range Names, UDF calls, VB code, st

"JNW" wrote:

Does anyone know the maximum number of named ranges allowed in xl03 and
xl07?

Thanks!
--
JNW








  #15   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,600
Default Maximum number of named ranges?

Hi Charles,

Great, barriers are there to be broken <g
Might take a while to make 64k+ names.

Regards,
Peter T

"Charles Williams" wrote in message
...
Hi Peter,

Sounds reasonable to me, I will have to to try to break the 64K barrier!

Charles
___________________________________
London Excel Users Conference April 1-2
The Excel Calculation Site
http://www.decisionmodels.com

"Peter T" <peter_t@discussions wrote in message
...
I did check a while ago following protestations from someone in this ng
and for me there was absolute limit of 64k names (ie 65,536).

I don't quite recall if that was how many could be saved rather than
created, either way that was the limit.

Regards,
Peter T

"Charles Williams" wrote in message
...
I don't know what the limit actually is, but I have seen useable
workbooks with over 50000 Defined Names

(personally I would not recommend using this many ...)

There used to be a limit on the depth of recursion allowed (names
referring to names referring to names ...),
not sure if this has been extended in Excel 2007.

Charles
___________________________________
London Excel Users Conference April 1-2
The Excel Calculation Site
http://www.decisionmodels.com

"Dean Meyer" wrote in message
...
I'm hitting a limit as well. See the posting: Limit (not memory)
consumed
by Range Names, UDF calls, VB code, st

"JNW" wrote:

Does anyone know the maximum number of named ranges allowed in xl03
and xl07?

Thanks!
--
JNW










Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Rapidly Create a Large Number of Named Ranges Thomas M. Excel Worksheet Functions 0 May 7th 09 07:09 PM
Named ranges scope / workbook/worksheet level named ranges- changeswith variable use... christian_spaceman Excel Programming 3 December 24th 07 01:15 PM
Limit to number of named ranges before Excel starts messing things up? S Davis Excel Worksheet Functions 3 September 12th 06 08:07 PM
Max number of named ranges John Excel Worksheet Functions 1 January 12th 06 10:47 PM
Maximum number of Name ranges Jim at Eagle Excel Programming 1 May 15th 05 07:22 AM


All times are GMT +1. The time now is 08:40 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"