Mega Code Archive

 
Categories / VisualBasic Script / Excel
 

Make a Cell font bold based on the cell value

Sub valueDemo()      If ActiveCell.value = 10 Then         ActiveCell.font.bold = True      End If End Sub