Let's assume you wanted to unbold Row 6 (change the number as appropriate)...What is the vba to make an entire row not bold?
Sub NoBold()
With Sheet1.UsedRange.Offset(1) '----> Change sheet code to suit.
.EntireRow.Font.Bold = False
End With
End Sub