简体   繁体   中英

How to find value of a cell from named range

Is in EXCEL some formala, that can find value of a cell. Something like INDEX, but instead of an index column, a named range.

I want to find cell in this named range and i know index of row

Just use INDEX as would would normally, and specifiy the name rather than the range, eg if YourNamedRange names the range A1:A100 then

=INDEX(YourNamedRange, IndexNumber)

and

=INDEX(A1:A100, IndexNumber)

are equivalent

对于vba range(“ YourNamedRange”)。cells(1,1)将获取范围内第一个单元格的值

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM