Having a problem with VLOOKUP under Google Sheets.
I have this basic command that I am trying to assign to each row of a column (there are 200 rows):
=Vlookup(D1,KDCAssets!A1:F500,5,false)
I want to assign this to a column. When doing so, I am expecting something like this:
Row 1 =Vlookup(D1,KDCAssets!A1:F500,5,false)
Row 2 =Vlookup(D2,KDCAssets!A1:F500,5,false)
Row 3 =Vlookup(D3,KDCAssets!A1:F500,5,false)
Row 4 =Vlookup(D4,KDCAssets!A1:F500,5,false)
The D value increases but A and F values remain the same ( i.e. A1 and F500 ). But what I am getting is something like:
Row 1 =Vlookup(D1,KDCAssets!A1:F500,5,false)
Row 2 =Vlookup(D2,KDCAssets!A2:F501,5,false) <- increases by 1
Row 3 =Vlookup(D3,KDCAssets!A3:F502,5,false) <- increases by 1
Row 4 =Vlookup(D4,KDCAssets!A4:F503,5,false) <- increases by 1
The range values starting with A1 and F500 increases with each successive row. But, for the lookup, I need to be the same for each row. How can I get this to act properly?
TIA