Using Error Handling When Using SpecialCells : SpecialCells « Excel « VBA / Excel / Access / Word






Using Error Handling When Using SpecialCells

 
Sub SpecialCells() 
    Dim myWorksheet As Worksheet 
    Dim rgSpecial As Range 
    Dim rgCell As Range 

    On Error Resume Next 
 
    Set myWorksheet = ThisWorkbook.Worksheets("Sheet1") 
    Set rgSpecial = myWorksheet.Cells.SpecialCells(xlCellTypeFormulas, xlErrors) 

    If Not rgSpecial Is Nothing Then 
        rgSpecial.Interior.Color = vbRed 
    Else 
        Debug.Print myWorksheet.Name & " is an error-free worksheet." 
    End If 

    Set rgSpecial = Nothing 
    Set rgCell = Nothing 
    Set myWorksheet = Nothing 
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.Deletes all the numbers in a worksheet, leaving the formulas intact
9.Copies all the numeric constants in the active sheet to blocks in the sheet named Constants, leaving an empty row between each block
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