Jak zawinąć moje makro w klauzulę IF EXIST [duplikat]


0

To pytanie ma już odpowiedź tutaj:

Mam następujący kod:

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

jak mogę go owinąć klauzulą ​​„JEŚLI ISTNIEJE KARTA”

Próbowałem następujących, które nie działały

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

mój błąd. zapomniałem zadać to pytanie. naprawa działała.
DanM

Odpowiedzi:


0

Biorę stąd rozwiązanie jako dobre:

Nie ma do tego wbudowanej funkcji.

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

Więc kończysz w:

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
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.