code
code
x = 6
Dim matriz As String
Dim area As String
'Dim ordem As String
Range("A2:AA10000").Select
Selection.UnMerge
x = x + 1
End If
Loop
y = 5
Do Until Cells(y, 2).Value = ""
If Cells(y, 1).Value = "" Then
linha = CStr(y)
conc = linha + ":" + linha
Rows(conc).Select
Selection.Delete Shift:=xlUp
End If
y = y + 1
Loop
Rows("3:3").Select
Selection.AutoFilter
Columns("G:G").ColumnWidth = 39.86
Columns("B:B").ColumnWidth = 10.14
Columns("C:C").ColumnWidth = 30.14
Columns("M:M").ColumnWidth = 36.43
Columns("H:H").ColumnWidth = 33.43
Rows("4:900").Select
Selection.RowHeight = 15.75
End Sub