excel函数获取另一个单元格的值

时间:2022-04-26 19:45:49

Image describing the problem http://img215.imageshack.us/img215/3725/20100314235127schedule2.jpg

描述问题的图像http://img215.imageshack.us/img215/3725/20100314235127schedule2.jpg

I hope the image above can explain what I need. :)

我希望上面的图片可以解释我需要什么。 :)

Problem 1: Get the date where it is the first value in the row

问题1:获取行中第一个值的日期

Problem 2: Get the date where the value is 100

问题2:获取值为100的日期

I would also attach the actual excel file, but I am limited to posting only 1 link.

我还会附上实际的excel文件,但我只限发布1个链接。

1 个解决方案

#1


5  

Function for left blue cell:

左蓝细胞的功能:

=IF(COUNTIF(L11:BJ11,">0"),INDEX($L$2:$BJ$2,MATCH(TRUE,INDEX(L11:BJ11>0,0),0)),"")

= IF(COUNTIF(L11:BJ11, “> 0”),INDEX($ L $ 2:$ BJ $ 2,MATCH(TRUE,INDEX(L11:BJ11> 0,0),0)), “”)

Function for right blue cell:

右蓝细胞的功能:

=IF(COUNTIF(L11:BJ11,100),INDEX($L$2:$BJ$2,MATCH(100,L11:BJ11,0)),"")

= IF(COUNTIF(L11:BJ11,100),INDEX($ L $ 2:$ BJ $ 2,MATCH(100,L11:BJ11,0)), “”)

#1


5  

Function for left blue cell:

左蓝细胞的功能:

=IF(COUNTIF(L11:BJ11,">0"),INDEX($L$2:$BJ$2,MATCH(TRUE,INDEX(L11:BJ11>0,0),0)),"")

= IF(COUNTIF(L11:BJ11, “> 0”),INDEX($ L $ 2:$ BJ $ 2,MATCH(TRUE,INDEX(L11:BJ11> 0,0),0)), “”)

Function for right blue cell:

右蓝细胞的功能:

=IF(COUNTIF(L11:BJ11,100),INDEX($L$2:$BJ$2,MATCH(100,L11:BJ11,0)),"")

= IF(COUNTIF(L11:BJ11,100),INDEX($ L $ 2:$ BJ $ 2,MATCH(100,L11:BJ11,0)), “”)