Cómo ajustar mi macro en una cláusula IF EXIST [duplicado]


0

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

Respuestas:


0

Tomo una solución de aquí como buena:

No hay una función incorporada para esto.

Function SheetExists(SheetName As String, Optional wb As Excel.Workbook)
   Dim s As Excel.Worksheet
   If wb Is Nothing Then Set wb = ThisWorkbook
   On Error Resume Next
   Set s = wb.Sheets(SheetName)
   On Error GoTo 0
   SheetExists = Not s Is Nothing
End Function

Entonces terminas en:

IF SheetExists("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
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.