Hi,

Here's the VBA code to remove all conditional format for all sheets on a workbook :

For Each WS In ThisWorkbook.Worksheets
    WS.Cells.FormatConditions.Delete
Next WS
Erik