View Single Post
  #2  
Old October 8th, 2009, 03:10 PM posted to microsoft.public.excel.misc
Jim Thomlinson
external usenet poster
 
Posts: 2,641
Default Using cell names across multiple worksheets

Named ranges fall into two categories. Global and Local. Local names are
sheet specific. An example would be Print_Area. When you define a print area
XL creates a local named range on that sheet called Print_Area. Each sheet in
your workbook can have a local print area named range. To create a locally
defined named range use
'Sheet1'!MyName
instead of just
MyName

MyName can be duplicated on each sheet in the workbook. There are scope
issues when you are refering to these named ranges.
--
HTH...

Jim Thomlinson


"M.Boone" wrote:

I have multiple worksheets that have the same layout and I want to name
certain cells to make calculations easier. When I try to do this, I get a
message that the name is not unique. Is there any way to get around this? I
want to create a template for future worksheets.