Find each row that has a Color (unknown color) and change the value of text in the cell

HunterN

Active Member
Joined
Mar 19, 2002
Messages
479
Hi,

I have the following module that will go through the used range in the worksheet and find each row where the Interior.color is NOT equal to vbWhite and add the following Row name to the value.

Code:
Sub Colored_Cells()

    Dim LastRow As Long
    Dim myRow As Long
   
    Range("A1").Select
    
    myRow = ActiveCell.row
    
    'Find the last row in the range
    Call FindLastRow(passLast)
    LastRow = passLast
    
    For myRow = 1 To LastRow
      '  MsgBox ("this cells color is " & ActiveCell.Interior.color)
        
        If ActiveCell.Interior.color = vbWhite Then 
            ActiveCell.Offset(1, 0).Select
        Else
            ActiveCell.Value = "Row number " & myRow
            ActiveCell.Offset(1, 0).Select
        End If
    Next
    
    Range("A1").Select
    
End Sub


Sub FindLastRow(passLast)
    
    If WorksheetFunction.CountA(Cells) > 0 Then
        'Search for any entry, by searching backwards by rows.
        LastRow = Cells.Find(What:="*", after:=[A1], _
            SearchOrder:=xlByRows, _
            SearchDirection:=xlPrevious).row
        passLast = LastRow
    End If

End Sub

I am just wondering if there is a better way to do this?

Thanks,
Nancy
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
It's best practice to avoid "selecting" cells in VBA code, unless your intention is to select a specific cell. Here, we can directly refer to cells without selecting. Try:

Code:
Sub Colored_Cells()

    Dim LastRow As Long
    Dim myRow As Long
   
    'Find the last row in the range

    LastRow = Range("A" & Rows.Count).End(xlUp).Row
    
    With Application
        .ScreenUpdating = False
        .Calculation = xlCalculationManual
    End With
    
    For myRow = 1 To LastRow
        With Range("A" & myRow)
            If .Interior.Color <> vbWhite Then
                .Value = "Row number " & myRow
            End If
        End With
    Next myRow
    
    With Application
        .ScreenUpdating = True
        .Calculation = xlCalculationAutomatic
    End With
    
End Sub
 
Upvote 0
It's best practice to avoid "selecting" cells in VBA code, unless your intention is to select a specific cell. Here, we can directly refer to cells without selecting. Try:

Code:
Sub Colored_Cells()

    Dim LastRow As Long
    Dim myRow As Long
   
    'Find the last row in the range

    LastRow = Range("A" & Rows.Count).End(xlUp).Row
    
    With Application
        .ScreenUpdating = False
        .Calculation = xlCalculationManual
    End With
    
    For myRow = 1 To LastRow
        With Range("A" & myRow)
            If .Interior.Color <> vbWhite Then
                .Value = "Row number " & myRow
            End If
        End With
    Next myRow
    
    With Application
        .ScreenUpdating = True
        .Calculation = xlCalculationAutomatic
    End With
    
End Sub

Thanks so much for giving me a cleaner way to do this (without Selecting).

Do I have to do the Application.Calculation part. What purpose does this serve?

Thanks,
Nancy
 
Upvote 0
The application.calculation part(s) turn on and off calculations in the Excel application. I recommend using this any time you are adjusting the values of cells, as it is never known (from my perspective) if the cells we are changing are inputs to formulas. If they are inputs to formulas, and we do not turn off the calculations, then Excel will want to recalculate every single time we change one of these "input" cells. When we turn the calculation mode to xlCalculationManual, this tells Excel to not calculate unless we explicitly tell it to... this can greatly speed up code execution!

Hope that helps
 
Upvote 0
The application.calculation part(s) turn on and off calculations in the Excel application. I recommend using this any time you are adjusting the values of cells, as it is never known (from my perspective) if the cells we are changing are inputs to formulas. If they are inputs to formulas, and we do not turn off the calculations, then Excel will want to recalculate every single time we change one of these "input" cells. When we turn the calculation mode to xlCalculationManual, this tells Excel to not calculate unless we explicitly tell it to... this can greatly speed up code execution!

Hope that helps

Thanks for that explanation. I need to remember that.

Thanks again for your help, it was exactly what I needed.

Nancy
 
Upvote 0
Thanks for that explanation. I need to remember that.

Thanks again for your help, it was exactly what I needed.

Nancy

Wonderful - thanks for the feedback. Have a good day!
 
Upvote 0

Forum statistics

Threads
1,223,904
Messages
6,175,295
Members
452,633
Latest member
DougMo

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top