查找另一个单元格引用的单元格
我想知道单元格指的是哪一列。根据它引用的单元格,将应用不同的公式。
例子:
<前><代码> ABCDEFG 高低选择纱布 毛圈 20 50 50 低 汤姆 40 1212 1212 低 詹姆斯 101010 121 101010 高 塞拉 5 5 高 山姆 50 50 50 低
单元格 E 公式
=c2
=c3
=b4
=b5
=b6
单元格 G 公式
=IF(F8=D8,"LOW","HIGH")
问题是 Sam 本来就是 High。
我希望我的例子可以帮助您理解我的困境。
I want to know what column a cell is referring to. Based on the cell it refers to, a different formula will apply.
example:
A B C D E F G HIGH LOW Choice Gaude Terry 20 50 50 LOW Tom 40 1212 1212 LOW James 101010 121 101010 HIGH Serra 5 5 HIGH Sam 50 50 50 LOW
cell E formula
=c2
=c3
=b4
=b5
=b6
cell G formula
=IF(F8=D8,"LOW","HIGH")
The problem is that Sam is meant to be High.
I hope my example helps you understand my predicament.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否在选择列 E 中手动输入公式?也许最好让 Gaude 列驱动 Choice 列:
单元格 E 公式
而不是更改 E 中引用的列,只需根据需要将 G 单元格更改为 LOW 或 HIGH 即可。
Are you manually entering the formula in the Choice column E? Maybe it's better to make the Gaude column drive the Choice column instead:
Cell E formula
And instead of changing the referenced column in E, just change G cells to LOW or HIGH as you require.
如果我正确地阅读了您的问题,您需要一个公式来分析另一个单元格中包含的公式,并告诉它引用的是哪一列。
您将需要一个 UDF,例如
这将返回一个列 数字(B 列为 2)
您可以像这样使用它
如果单元格
E8
包含=B8
WhatColumn
将返回2
,If I read your quextion correctly, you want a formula that can analyse the formuala contained in another cell, and tell what column it refers to.
You will need a UDF for thism such as
This will return a column number (2 for column B)
You would use this like
so if cell
E8
contains=B8
WhatColumn
will return2