Sub Workbook
Sub Workbook
Application.ExecuteExcel4Macro "SHOW.TOOLBAR(""Ribbon"",False)"
Application.DisplayFormulaBar = False
ActiveWindow.DisplayWorkbookTabs = False
End Sub
Sub Workbook_Off()
Application.ExecuteExcel4Macro "SHOW.TOOLBAR(""Ribbon"",true)"
Application.DisplayFormulaBar = True
ActiveWindow.DisplayWorkbookTabs = True
End Sub
Sub DeleteEntireRow()
Selection.EntireRow.Delete
End Sub
Sub PDF()
True
End Sub
Sub iMPR()
Range("D3").Select
IgnorePrintAreas:=False
Range("D3").Select
End Sub
Sub deletarLinhasVazias() Dim ultimalinha, r As Integer ultimalinha =
ActiveSheet.UsedRange.Row - 1 + _ ActiveSheet.UsedRange.Rows.Count
Application.ScreenUpdating = False For r = ultimalinha To 1 Step -1 If
Application.CountA(Rows(r)) = 0 Then Rows(r).Delete End If Next r End Sub
Sub PDF_VAMOS_GERAR()
Range("C5").Select
PastaNome, Quality:= _
OpenAfterPublish:=False
End Sub