Hi Rajat ,
I am not sure I have understood your question , but let me suggest this :
=SMALL(IF(A1:A20<10,(A1:A20),MAX(A1:A20)),1)
entered as an array formula ( using CTRL SHIFT ENTER ) , will give you the smallest value in the list A1:A20 , which meets the criterion >10 ; any value less than or equal to 10 will not be used to evaluate the formula.
Similarly ,
=LARGE(IF(A1:A20>10,(A1:A20),MIN(A1:A20)),1)
entered as an array formula ( using CTRL SHIFT ENTER ) , will give you the largest value in the list A1:A20 , which meets the criterion <10 ; any value greater than or equal to 10 will not be used to evaluate the formula.
Narayan