R RalphT New Member Nov 12, 2014 #1 I am writing code where I need to be able to identify a cell with BOLD formatting and act on that information. How do I identify BOLDED cells?
I am writing code where I need to be able to identify a cell with BOLD formatting and act on that information. How do I identify BOLDED cells?
Somendra Misra Excel Ninja Nov 12, 2014 #2 Hi, Try something like below: Code: If Range("A1").Font.Bold = True Then MsgBox "Cell is bold" 'Execute this part if cell is bold Else ' Execute this part if not bold End If Regards,
Hi, Try something like below: Code: If Range("A1").Font.Bold = True Then MsgBox "Cell is bold" 'Execute this part if cell is bold Else ' Execute this part if not bold End If Regards,