John,
As far as Iknow , you will not be able to achive this with the conditional
formatting tool.
Instead you should create a tool yourself in VBE
Something like :
Sub SetConFormat()
If ActiveCell.HasFormula Then
ActiveCell.Font.Bold = True
End If
End Sub
You could use this in a do... loop to set a area of cell in this format
Hope this will help
Mario
"John Smith" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>I would like to set a cell's fontface to bold if it contains no
> formula. I selected format/conditional formatting... then "formula
> is" and left the other box blank. This does not do what I want it
> to do.
>
> What is the proper way of doing it? Thanks.
|