Clearing cells

  • Thread starter Thread starter hal
  • Start date Start date
H

hal

Other than a tedious looping construct, how can you
quickly clear a large block of cells?

TIA
 
Selection.Clear
Selection.ClearContents

Range("A1:A100").Clear
Range("A1:A100").ClearContents

Clearcontents will only clear the value in it
Clear also the formatting
 
Hal,

Try something like

Range("A1:Z10000").Clear

Or do you have something else in mind?


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com (e-mail address removed)
 
Back
Top