So the title is pretty self explanatory but... Is it possible for me to create a code in my worksheet with an If condition with several Then statements?
Kind of like what I am trying to do here... (code is in a worksheet called CAPA)
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = Me.Range("G9").Address Then
If Target.Value = "" Then
Sheets("%Humidade NLT 102 91").Visible = False
Sheets("RESUMO").Column("9").Visible = False
Else
Sheets("%Humidade NLT 102 91").Visible = True
Sheets("RESUMO").Column("9").Visible = True
End If
End If

But it bugs on the Sheets("RESUMO").Column("9").Visible = False part, saying ''Object doesn't support this property or method"
Helppppp