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 文件中,我想在列中搜索值的第一次出现并生成它出现的位置。在我的 A 列中,我有一个数字列表(x 轴),在 F 列中,我有一系列数据。我想在 F 列中找到大于 7.5 的值的第一次出现,并将它的相对列 A 值放在另一个单元格中。A 列和 F 列都从单元格 1 运行到 4000。
如果可能的话,对 VBA 函数或简单输入函数的任何帮助都会有很大帮助!
有很多猜测,这可能适合:
=INDEX(A:A,MATCH(7.5,F:F,1)+1,1)
编辑我猜错了。
那么这行得通吗?
=IF(F1 > 7.5,A1)
将其粘贴到您的 H 单元格中。如果 F 小于 7.5,它将返回 False