データの検証に 2 つの異なるオプション (オプション 1 とオプション 2) を設定しました。必要なのは、オプション 1 を選択した場合は、隣接するセルに数式 +Sheet1!A1 が入力されるようにし、オプション 2 を選択した場合は、同じ隣接するセルに数式が含まれていないか、または消えるようにすることです。
これを入手する方法を知っている人はいますか?
答え1
G3 にデータ検証のあるセルがあると仮定します。G3 は「オプション 1」または「オプション 2」のみになります。G3 の内容に応じて、G4 は変わります。
G4 の式は次のようになります。
=if(G3="Option 1";Sheet1!A1;"")
詳しく見ていきましょう。
=if(condition ;true ;false)
=if( ; ; ) <- this is the formula itself
G3="Option1" <- this is being evaluated.
Sheet1!A1 <- if the above condition evaluates to true
the output of this formula is displayed
in G4.
"" <- if the above condition evaluates to false
"" (aka nothing) is displayed in G4.