Google 表格解决方案

Google Sheets solution

我有一个包含 3 列的电子表格,A 列的值递增 10,b 列的递增差 AKA...

Column A Column B Column C
125 135 5
135 145 6
145 155 7

Ext...(有数百行具有这些递增值)

我还有一个值放在任意位置,例如“137”,我们称它为 D1

我需要以某种方式循环浏览各列并找出...

如果 D1 => 135 且小于 145,则将 C 列的值放入另一个单元格 AKA(E1)。

If D1 is => 135 and less than 145 and if so, place the value of column C in another cell AKA(E1).

在 E1 中尝试以下操作:

=arrayformula(if(isbetween(D1:D,135,145,1,0),C1:C,))

编辑

i need to cycle through columns A and B and find where my D1 number fits and output the corresponding C value to E1

尝试:

=arrayformula(vlookup(D1:D,{A1:A,C1:C},2))