What is an equivalent for INDEX in ARRAYFORMULA?

前端 未结 3 1865
Happy的楠姐
Happy的楠姐 2021-02-15 15:22

I have (what I thought was) a simple lookup table holding some exchange rates. There I am looking up values based on row and column indices.

How can I do that in an ARRA

3条回答
  •  旧时难觅i
    2021-02-15 16:09

    vlookup can be adapted to mimic index functionality by making the first column of the lookup table the row number (with a suitable offset). Example:

    =arrayformula(vlookup(F1:F, {row(x!C2:C) - row(x!C2) + 1, x!C2:C}, 2))
    

    does what you tried to do with "=ARRAYFORMULA(INDEX(x!C2:C, F1:F))".

    The lookup table {row(x!C2:C) - row(x!C2) + 1, x!C2:C} has first column 1,2,3,... and the second column the range you wish to index. So, for each value from F1:F, vlookup accesses the entry of x!C2:C that index would.

提交回复
热议问题