Naming a range versus formula in Excel

J

Jos Vens

Hi,

can anyone tell me if it is possible to make a formula that gives an item of
a named range which contains more than one cell?

eg. I have a named range called "Result" and I want to have the third result
in a cell. It should be something like:

=Result.cells(3) but cells does not exist in Excel, only in VBA

Thanks
Jos Vens
 
J

Jos Vens

Thanks Robin,

this is exactly what I'm looking for! It saves me creating a lot of named
cells!

Jos
 
K

keepITcool

Note: if the range has 2 dimensions..

=index($a$10:$g$40,3) will return an error.

=index($a$10:$g$40,3,0) returns an array of values in 3rd row
=index($a$10:$g$40,0,3) returns an array of values in 3rd column

=index($a$10:$g$40,3,1) will return 1 itm =>3rd row,1st col



keepITcool

< email : keepitcool chello nl (with @ and .) >
< homepage: http://members.chello.nl/keepitcool >
 
J

Jos Vens

Thanks for the extra information!

Jos Vens

keepITcool said:
Note: if the range has 2 dimensions..

=index($a$10:$g$40,3) will return an error.

=index($a$10:$g$40,3,0) returns an array of values in 3rd row
=index($a$10:$g$40,0,3) returns an array of values in 3rd column

=index($a$10:$g$40,3,1) will return 1 itm =>3rd row,1st col



keepITcool

< email : keepitcool chello nl (with @ and .) >
< homepage: http://members.chello.nl/keepitcool >
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top