如何获取对数组中单元格的引用,仅知道其值?
我的工作表中有一个包含以下值的列数组:11、15、5、7、2。我想获取对包含值 15 的单元格的引用。我将如何执行此操作?
谢谢
I have a column array with the following values in my sheet: 11, 15, 5, 7, 2. I want to get a reference to the cell which contains the value 15. How would I go about doing this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的数组是 A2:A13,这里有一个公式,可以为您提供对值为 15 的单元格的引用...
INDEX(A2:A13, MATCH(15, A2:A13))
If your array is A2:A13 here is a formula that will get you the reference to the cell with a value of 15...
INDEX(A2:A13, MATCH(15, A2:A13))