Search for Cells of certain color and empty

TheTiredEngineer

New Member
Joined
Jul 31, 2024
Messages
17
Office Version
  1. 365
Platform
  1. Windows
Hello

Im trying to get my excel vba to search for all the cells that are filled with a tan color and then find within those the cells that are empty. So far its been listing all the cells that are filled with a tan color and ignoring my code to check for only empty cells. Some cells are supposed to have numbers, and some are text. Any help is appreciated.

VBA Code:
Option Explicit

Dim MyRange, MR, rngCell, rngCol As Range
Dim rngCount, TotalBlanks As Long
Dim rngCellValue As String


Sub Button19_Click()
  
    Set MR = Range("A1:AF184")
    
    rngCount = 1
    TotalBlanks = 1
    
    'Need a second For Each loop to select each of the Y/N boxes and compare if Y, then check if cells are blank
    
    For Each rngCell In MR
        If rngCell.DisplayFormat.Interior.Color = RGB(255, 245, 217) Then
            'Sheets("Results").Range("A" & rngCount) = rngCell.Value
            rngCount = rngCount + 1 'counts the number of fillable yellow cells
            
          
            If rngCell.Value <> vbNullString Then 'checks if a cell is blank
            
            TotalBlanks = TotalBlanks + 1
                
                Debug.Print rngCell.Address & " is blank"
                Debug.Print TotalBlanks
                'Debug.Print rngCount
                'Debug.Print rngCell.Value
            End If
        End If
    Next rngCell
End Sub
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
I think you'll find this works better:

Change this:
VBA Code:
If rngCell.Value <> vbNullString Then

to this:

VBA Code:
If len(rngCell.Formula) =0 Then
 
Upvote 1
Solution
Hi,

I'm not quite clear, but if you wanted to count blanks, would you not look for an "=" rather than a "<>" ?

VBA Code:
If rngCell.Value <> vbNullString Then 'checks if a cell is blank

this suggests to increment your count if the cell is NOT blank ?

might help

Rob
 
Upvote 0
I think you'll find this works better:

Change this:
VBA Code:
If rngCell.Value <> vbNullString Then

to this:

VBA Code:
If len(rngCell.Formula) =0 Then

It looks like that worked. But then if I want to pair that with if each drop down is Y or N, to only check for those blanks if Y, how do I do that? I imagine it will be a for loop to count the drop-down rows and an if statement to check if Y. Can I pair that with the Len(rngCell.Formula)=0 ? Currently its checking all the blanks and obviously if the dropdown in N, then I dont want it checking those cells.
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

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