Since you never know when someone will add a column, instead of hard coding "C"
as your last column to format, try the following:
LastUsedColumn = ActiveCell.SpecialCells(xlLastCell).Column
Range(Cells(ActiveCell.Row, "A"), Cells(ActiveCell.Row,
LastUsedColumn)).Font.Bold =
False