(C3-F3-B6:F17) & this merged cell (C,D,E,F4)Which cells do you want to clear & what sheet are they on?
Correct, Thank YouTry
VBA Code:Sub tesdt() Dim drg As Range Set drg = Union(Range("C4:F4"), Range("C3:F3"), Range("B6:F17")) drg.ClearContents End Sub