excel function to get value of another cell

空扰寡人 提交于 2019-12-10 18:10:23

问题


Image describing the problem 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

Problem 2: Get the date where the value is 100

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


回答1:


Function for left blue cell:

=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)),"")



来源:https://stackoverflow.com/questions/2442808/excel-function-to-get-value-of-another-cell

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!