Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I use the index function with INDEX(Personnel!A$1:$I$71,I78,9). When I insert
a column in the array the column I am looking for is now 10 instead of 9. The column name in the Personnel worksheet is PreFund. Can I change the index function column parameter so that if I insert a column it will still reference the correct column? Thanks. Michael |
#2
![]() |
|||
|
|||
![]()
Hi
see your other post. If you have a question to the ideas/solutions presented best to post a follow-up question :-) -- Regards Frank Kabel Frankfurt, Germany "mlkpied" schrieb im Newsbeitrag ... I use the index function with INDEX(Personnel!A$1:$I$71,I78,9). When I insert a column in the array the column I am looking for is now 10 instead of 9. The column name in the Personnel worksheet is PreFund. Can I change the index function column parameter so that if I insert a column it will still reference the correct column? Thanks. Michael |
#3
![]() |
|||
|
|||
![]()
One way:
=INDEX($I$1:I$71,I78) Another: =INDEX($A$1:$I$71, I78, COLUMN($I$1)) In article , "mlkpied" wrote: I use the index function with INDEX(Personnel!A$1:$I$71,I78,9). When I insert a column in the array the column I am looking for is now 10 instead of 9. The column name in the Personnel worksheet is PreFund. Can I change the index function column parameter so that if I insert a column it will still reference the correct column? Thanks. Michael |
#4
![]() |
|||
|
|||
![]()
JE McGimpsey wrote...
... Another: =INDEX($A$1:$I$71, I78, COLUMN($I$1)) ... Depends on the range starting in column A. More robust to use =INDEX($A$1:$I$71, I78, COLUMNS($A$1:$I$71)) to ensure referencing the rightmost column. --------- www.coffeecozy.com Use your Bodum and give up cold coffee for good! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Passing a range name as an argument to the Index Function | Excel Discussion (Misc queries) | |||
Variable values in Index function | Excel Worksheet Functions | |||
vlookup change column index position - without changing formulae | Excel Worksheet Functions | |||
Excel - option to extend function in cell to column | Excel Worksheet Functions | |||
Column Index | Excel Worksheet Functions |