active cell bold
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
With Cells.Font
.FontStyle = "Regular"
End With
With ActiveCell.Font
.FontStyle = "Bold"
End With
End Sub
Vaya con Dios,
Chuck, CABGx3
"Dtech" wrote:
Im trying to make the active cell either bolded or highlighted. Is that
possible?
|