Getting a value from a named range in VBA
Use this
ThisWorkbook.Names("myNamedRange").RefersToRange(1,1)
To get the value from the first cell in the named range "myNamedRange"
With ThisWorkbook.Names
you can access all named ranges of all the sheets within the current workbook.
With RefersToRange
you get a reference to the actual range.
This looks like a good place to put a handy note (as it's a top search result):
If you name a cell "TopLeft", then Sheets(1).Range("TopLeft").Value
gets the contents, and Sheets(1).Range("TopLeft").Offset(2,3).Value
gets the value from 2 down, 3 across from there.