A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Hi,
You can try this:
To lock the range Sheet1!A2:B100 in your VLOOKUP formula so it doesn't change when you drag it down, you need to use absolute references by adding dollar signs ($) to the range. This fixes the row and column references.
Modify your VLOOKUP formula like this: =VLOOKUP(C2,Sheet1!$A$2:$B$100,2,FALSE)
Explanation:
- $A$2:$B$100: The dollar signs lock both the columns (A and B) and rows (2 and 100), so the range stays constant when you drag the formula.
- C2: This remains a relative reference, so it adjusts to C3, C4, etc., as you drag down.
- 2: Specifies the second column in the range for the return value.
- FALSE: Ensures an exact match.
Steps to Apply:
- Update the formula in the first cell to include the $ signs as shown above.
- Drag the formula down, and the range Sheet1!$A$2:$B$100 will remain fixed.
- Verify that the formula in cell 25 (or any other row) still references Sheet1!$A$2:$B$100.
I hope the information helps!
If you would like more information or support, please let me know!
Schneider-P MSFT | Microsoft Community Support Specialist