下拉菜单中的相邻单元格

下拉菜单中的相邻单元格

我已将数据验证设置为具有两个不同的选项(选项 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.

相关内容