Move cols by 1 in every formula on the whole workbook

szakharov7723

Board Regular
Joined
Jun 22, 2018
Messages
85
Office Version
  1. 2019
Platform
  1. Windows
So I have database using lot's of VLOOKUP, but they all refer to the same array ,where new column needs to be inserted in the middle of array. The array in formula moves, but columns remain the same. Hence it pulls data from the wrong place now.
Is there a way to basically add 1 to every col in multiple VLOOKUP functions ?
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
You might have to do it manually as some columns may be referenced BEFORE the inserted column and some AFTER, e.g.

VLOOKUP(A1,B1:Z1, 2)
VLOOKUP(A1,B1:Z1,17)

A new column is inserted at column 13

Column 17 should be increased but column 2 should remain the same.

I can't see a way of doing this automatically.
 
Upvote 0
If you enter the formula as

=VLOOKUP(A1, B1:Z100, COLUMNS($B$1:$R$1))

(where R is the initial lookup column), it will adapt to inserted and deleted columns.
 
Upvote 0

Forum statistics

Threads
1,223,910
Messages
6,175,320
Members
452,635
Latest member
laura12345

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top