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

MackM picture MackM · Aug 7, 2015 · Viewed 185.7k times · Source

If you want to clear the contents of a cell or range in Microsoft Excel, you can use .ClearContents. If you also want to clear the formatting, you can use .ClearFormats.

Sheets("Test").Range("A1:C3").ClearContents
Sheets("Test").Range("A1:C3").ClearFormats

If you want to do both, you can use .Delete, but then the other cells in the spreadsheet shift to replace the deleted cells.

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

How can you remove the contents and the formatting of a cell or range in VBA with a single command, without affecting the rest of the worksheet?

Answer

MackM picture MackM · Aug 7, 2015

Use the .Clear method.

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

MSDN documentation here.