I have the below table in Excle file and i want to find the value column for the respective input.
Col A Col B Col C Min Max Value
101 AA Hig
If you use this version it can return text or number - if there's no match you get #N/A
=LOOKUP(2,1/(A2:A9=101)/(B2:B9="AA")/(C2:C9="Low")/(D2:D9=11),F2:F9)
If there is more than one matching row that returns the last - for the first try this version:
=INDEX(F2:F9,MATCH(1,INDEX((A2:A9=101)*(B2:B9="AA")*(C2:C9="Low")*(D2:D9=11),0),0))