Clear contents and formatting of an Excel cell with a single command Clear contents and formatting of an Excel cell with a single command vba vba

Clear contents and formatting of an Excel cell with a single command


Use the .Clear method.

Sheets("Test").Range("A1:C3").Clear

MSDN documentation here.