Excluir Guia
Public Function ExcluirGuia(Guia As String)
Dim x As Long
For x = 1 To Worksheets.Count
If Sheets(x).Name = Guia Then
Application.DisplayAlerts = False
Sheets(x).Delete
Application.DisplayAlerts = True
Exit ForEnd If
Next x
End Function