Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count 1 Then Exit Sub
If Target.Address „$D$25“ Then Exit Sub
Worksheets(„Calculator“).Visible = IIf(Target.Value = „multifamily house“, -1, 2) Or IIf(Target.Value = „combined commercial residential building“, -1, 2) Or IIf(Target.Value = „office building“, -1, 2) Or IIf(Target.Value = „industrial building“, -1, 2) Or IIf(Target.Value = „shopping center“, -1, 2) Or IIf(Target.Value = „hotel“, -1, 2)
Worksheets(„Rental Income Valuation“).Visible = IIf(Target.Value = „hotel“, -1, 2)
**If Target.Address „$C$63“ Then Exit Sub
Worksheets(" Calculator").Visible = IIf(Target.Value „#“, -1, 2)
End Sub
Wieso funktioniert das zweite If nicht?
Danke für Eure Hilfe.**