Sub Auto_Open() ActiveSheet.OnEntry = "Action"End SubSub Action() If IsNumeric(ActiveCell) Then ActiveCell.Font.Bold = ActiveCell.Value >= 500 End IfEnd Sub