views:

68

answers:

1

Image describing the problem

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.

+4  A: 

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

geff_chang
+1: I tried it and it seems to work fine :)
Peter Lang