Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
を使用しようとしてVLOOKUPいますが、列オフセットの変数を使用しています。例:を名前付き変数=VLOOKUP(RC[-1],'Sheet2'!C[-14],1,FALSE)に置き換えたいとします。 ここで誰かが私を正しい方向に向けることができますか?-14
VLOOKUP
=VLOOKUP(RC[-1],'Sheet2'!C[-14],1,FALSE)
-14
次のような OFFSET ワークシート関数を使用できます。=VLOOKUP(RC[-1],OFFSET(Sheet2!C,0,YourNamedVariable),1,FALSE)
=VLOOKUP(RC[-1],OFFSET(Sheet2!C,0,YourNamedVariable),1,FALSE)