conditional formating bold is true not bold false how
Hi
not sure if this is what you want. Probably not.
Sub tester()
If ActiveCell.Font.Bold = True Then
MsgBox "Cell text is Bold"
Else
MsgBox "Cell text is not Bold"
End If
End Sub
macro tests if active cell is bold or not.
regards
Paul
On Jun 24, 3:12*pm, victorio0704
wrote:
What I want to do is for it to look if it finds the text *in BOLD then it is
true if the text is not in Bold then is false
|