Deletes all the numbers in a worksheet, leaving the formulas intact : SpecialCells « Excel « VBA / Excel / Access / Word

Home
VBA / Excel / Access / Word
1.Access
2.Application
3.Data Type
4.Data Type Functions
5.Date Functions
6.Excel
7.File Path
8.Forms
9.Language Basics
10.Math Functions
11.Outlook
12.PowerPoint
13.String Functions
14.Windows API
15.Word
16.XML
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
VBA / Excel / Access / Word » Excel » SpecialCells 
Deletes all the numbers in a worksheet, leaving the formulas intact
 
Sub del()
     On Error Resume Next
     For Each rng In Cells.SpecialCells(xlCellTypeConstants, xlNumbers)
         If Not IsDate(rng.ValueThen rng.ClearContents
     Next rng
End Sub

 
Related examples in the same category
1.Delete numbers
2.Constants for the Value Argument for the SpecialCells Method
3.Selecting with SpecialCells
4.Select Comment Cells
5.Select Active Area
6.Identifies all the cells that contain formulas resulting in errors in the active worksheet:
7.Determines the last row and column in the worksheet:
8.Copies all the numeric constants in the active sheet to blocks in the sheet named Constants, leaving an empty row between each block
9.Using Error Handling When Using SpecialCells
10.Using the SpecialCells method: uses the Set keyword to create two new Range objects: the selection's subset that consists of cells with constants and the selection's subset that consists of cells with formulas.
11.Process the formulas
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.