Hi to all.
I have a range of cells with conditional formatting.
Is it possible to remove it and leave the color of the cells?
On the net i found this macro but i can't try it i have excel 2007 and i think it works for excel 2007 higher
I have a range of cells with conditional formatting.
Is it possible to remove it and leave the color of the cells?
On the net i found this macro but i can't try it i have excel 2007 and i think it works for excel 2007 higher
VBA Code:
Sub remove_color_formatting()
Dim cell
For Each cell In ActiveWorkbook.ActiveSheet.Range("A5:P15").Cells
cell.Interior.Color = cell.DisplayFormat.Interior.Color
cell.FormatConditions.Delete
Next
End Sub