Hi ,
Your VLOOKUP formula is :
=VLOOKUP(B1,istneeraj,MATCH(B2,istneeraj_1,0)+1,FALSE)
Here , the segment : MATCH(B2,istneeraj_1,0)+1 will return a number between 2 and 5.
Thus , the range istneeraj has to be at least 5 columns wide.
If you redefine the named range istneeraj as follows :
=OFFSET(Sheet1!$A$2,0,0,COUNTA(Sheet1!$A:$A)-1,5)
where the change is highlighted , then your formula will work correctly.
Narayan