Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在EXCEL中是一些形式,可以找到一个单元格的值。类似于 INDEX,但不是索引列,而是命名范围。
我想在这个命名范围中找到单元格并且我知道行的索引
只需INDEX像往常一样使用,并指定名称而不是范围,例如,如果YourNamedRange命名范围,A1:A100则
INDEX
YourNamedRange
A1:A100
=INDEX(YourNamedRange, IndexNumber)
和
=INDEX(A1:A100, IndexNumber)
是等价的
for vba range("YourNamedRange").cells(1,1) 将为您获取范围内第一个单元格的值