Excel - memogol9

 
Vista:

RE:memogol9

Publicado por José Luis (700 intervenciones) el 26/12/2006 17:42:54
Por macro.

Pon esta código en la hoja desde donde deseas hacer el control

Private Sub worksheet_change(ByVal target As Range)

Application.EnableEvents = False

If Range("A1").Value="SI" Then
Sheets("Hoja3").Visible = True
Else
Sheets("Hoja3").Visible = False
End If

Application.EnableEvents = True

End Sub

Saludos y Feliz Navidad
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar