相鄰單元格取決於下拉式選單

相鄰單元格取決於下拉式選單

我已將資料驗證設定為具有兩個不同的選項(選項 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.

相關內容