I have a series of VLOOKUP formulas in a single column of one worksheet that pull in data from multiple columns on another worksheet. If I have to add a new column(s) into the source worksheet, the VLOOKUP formula column references on the destination worksheet will automatically change to accommodate the addition(s), but the column index number does not. The result is that my table array grows, but the index number doesn't. For example:
=VLOOKUP(O184,Sheet1!$B:I,8,FALSE)
If six columns are inserted before column I, the table array changes to $B:O, but the column index will remain at 8 when I need it to advance to 14. What, if anything, can I do to automate a change in the column index number?
=VLOOKUP(O184,Sheet1!$B:I,8,FALSE)
If six columns are inserted before column I, the table array changes to $B:O, but the column index will remain at 8 when I need it to advance to 14. What, if anything, can I do to automate a change in the column index number?