I took the time to clean up your recorded macro to remove selections, etc
Use this to bold your integer rows. To incorporate into the other use
boldintgers
as the last line before end sub in the merge_cells macro
Sub boldintegers()
mc = 1 'col A
For i = 1 To Cells(Rows.Count, mc).End(xlUp).Row
mv = Cells(i, mc)
If Len(Application.Trim(mv)) > 0 _
And mv = Int(mv) Then
'MsgBox i
Rows(i).Font.Bold = True
End If
Next
End Sub
Sub Merge_Cells()
'I REALLY do NOT recommend MERGING CELLS. Use center across
Columns("C

").Delete
Rows("2:2").Insert Shift:=xlDown
With Range("A1:A2,c1:d2,f1:m2")
.HorizontalAlignment = xlGeneral
.VerticalAlignment = xlBottom
.WrapText = True
.Orientation = 0
.AddIndent = False
.IndentLevel = 0
.ShrinkToFit = False
.ReadingOrder = xlContext
.MergeCells = True
End With
Columns("A").ColumnWidth = 7.57
Columns("B").ColumnWidth = 35.29
Columns("C").ColumnWidth = 12.14
Columns("D").ColumnWidth = 6.71
Columns("E").ColumnWidth = 10.43
Columns("F").ColumnWidth = 14
Columns("G").ColumnWidth = 11.43
Columns("H").ColumnWidth = 12.71
Columns("I").ColumnWidth = 11.71
Columns("J").ColumnWidth = 12
Columns("K").ColumnWidth = 15
Columns("L").ColumnWidth = 17.57
Columns("M").ColumnWidth = 13.14
Columns("N").ColumnWidth = 11.86
Columns("N").Interior.ColorIndex = 36
Columns("L").Interior.ColorIndex = 34
'REALLY slows things down so
'comment out or delete changes not necessary
'or UN comment what I commented
With ActiveSheet.PageSetup
'.PrintTitleRows = ""
'.PrintTitleColumns = ""
'.PrintArea = ""
'.LeftHeader = ""
'.CenterHeader = ""
'.RightHeader = ""
'.LeftFooter = ""
'.CenterFooter = ""
'.RightFooter = ""
'.LeftMargin = Application.InchesToPoints(0.75)
'.RightMargin = Application.InchesToPoints(0.75)
'.TopMargin = Application.InchesToPoints(1)
'.BottomMargin = Application.InchesToPoints(1)
'.HeaderMargin = Application.InchesToPoints(0.5)
'.FooterMargin = Application.InchesToPoints(0.5)
'.PrintHeadings = False
'.PrintGridlines = False
'.PrintComments = xlPrintNoComments
'.PrintQuality = 600
'.CenterHorizontally = False
'.CenterVertically = False
.Orientation = xlLandscape
'.Draft = False
.PaperSize = xlPaper11x17
'.FirstPageNumber = xlAutomatic
.Order = xlDownThenOver
'.BlackAndWhite = False
'.Zoom = 100
'.PrintErrors = xlPrintErrorsDisplayed
End With
End Sub