View Single Post
 
Old 09-19-2017, 03:05 PM
jeffreybrown jeffreybrown is offline Windows Vista Office 2007
Expert
 
Join Date: Apr 2016
Posts: 673
jeffreybrown has a spectacular aura aboutjeffreybrown has a spectacular aura about
Default

Maybe one way could be...

Code:
Sub Macro1()
    Cells.SpecialCells(xlCellTypeBlanks).ClearFormats
End Sub
or

Code:
Sub Macro2()
    Cells.SpecialCells(xlCellTypeBlanks).FormatConditions.Delete
End Sub
Reply With Quote