View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
jeffbert jeffbert is offline
external usenet poster
 
Posts: 50
Default Delet row if bold

Thanks to both of you for the help. Is there a way to select a variable
column? I have just run across a situation where sometimes I need column A,
sometimes B, etc.

"David Myle" wrote:

Sub DeleteBold()
set rng =Range("a1: a" &[a65536].End(xlup).Row)
For each c in rng
If c.font.Bold = True Then
c.Clear
End if
Next
End Sub

DM


"jeffbert" wrote in message
...
Does anyone have a macro to evaluate column A and delete if formatting is
<bold?