Como envolver minha macro em uma cláusula IF EXIST [duplicada]

0

Eu tenho o seguinte 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

como posso envolvê-lo com a cláusula "IF SHEET EXISTS"

Eu tentei o seguinte que não funcionou

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
    
por DanM 14.03.2016 / 17:46

1 resposta

0

Eu tomo uma solução daqui como uma boa:

Não há nenhuma função interna para isso.

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

Então você acaba em:

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
    
por 14.03.2016 / 18:01