Excel VisualBasic Script

Sub all()
    Set rngCond = ActiveSheet.cells.SpecialCells(xlCellTypeAllFormatConditions)
    If Not rngCond Is Nothing Then
        rngCond.BorderAround xlContinuous
    End If
End Sub