Esta pregunta ya tiene una respuesta aquí:
Tengo el siguiente código:
If Sheets("EstimateTemplate").Visible Then
Sheets("EstimateTemplate").Select
ActiveWindow.SelectedSheets.Visible = False
Sheets("Navigation").Select
Else
Sheets("EstimateTemplate").Visible = True
Sheets("Navigation").Select
End If
¿Cómo puedo envolverlo con la cláusula "SI LA HOJA EXISTE"
Intenté lo siguiente que no funcionó
IF not Sheets("EstimateTemplate") = "" then
If Sheets("EstimateTemplate").Visible Then
Sheets("EstimateTemplate").Select
ActiveWindow.SelectedSheets.Visible = False
Sheets("Navigation").Select
Else
Sheets("EstimateTemplate").Visible = True
Sheets("Navigation").Select
End If
end if
culpa mía. Olvidé que hice esa pregunta. arreglar trabajado.
—
DanM