LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 783
Default value of one cell in a named range

And explicitly using Item is superfluous.

x = Range("myrange")(10,1).Value

works fine.

Alan Beban

Mike H wrote:
Karen,

Imagine your named range as a grid and you can refer it individual cells
within it like this:-

Sub sonic()
x = Range("myrange").Item(2, 2).Value
End Sub

item refers to row, column.
It's also useful to note that you can use this method to refer to cells
outside your named range so a 3,3 grid could iuse the reference 3,4 which
would rer to the column to the right of your grid.

So to return item 10,1 is
x = Range("myrange").Item(10, 1).Value

where "myrange" is the name of your range.

Mike

 
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
Referencing a named range based upon Range name entry in cell Barb Reinhardt Excel Worksheet Functions 14 June 20th 07 07:19 PM
inserting a named range into new cells based on a named cell Peter S. Excel Discussion (Misc queries) 1 June 4th 06 03:53 AM
named cell range Marilyn Excel Worksheet Functions 2 March 13th 06 07:42 PM
If any cell in named range = 8 then shade named range JJ[_8_] Excel Programming 3 August 26th 05 11:09 PM
Getting named range from a cell Dandog Excel Programming 2 January 10th 05 06:01 AM


All times are GMT +1. The time now is 04:25 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"