Angrenzende Zellen abhängig vom Dropdown-Menü

Angrenzende Zellen abhängig vom Dropdown-Menü

Ich habe die Datenüberprüfung so eingerichtet, dass sie zwei verschiedene Optionen bietet (Option 1 und Option 2). Was ich möchte, ist: Wenn ich Option 1 wähle, möchte ich, dass die angrenzende Zelle mit der Formel +Sheet1!A1 gefüllt wird, aber wenn ich Option 2 wähle, möchte ich, dass dieselbe angrenzende Zelle aussieht, als ob sie keine Formel enthält oder dass sie verschwindet.

Weiß jemand, wie man das bekommt?

Antwort1

Nehmen wir an, G3 enthält die Zelle mit der Datenüberprüfung. G3 kann nur „Option 1“ oder „Option 2“ sein. Je nach Inhalt von G3 ändert sich G4.

Die Formel für G4 muss lauten:

=if(G3="Option 1";Sheet1!A1;"")

Lassen Sie es uns aufschlüsseln.

=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.

verwandte Informationen