Check for Not Empty Cells

Ivy_1011

New Member
Joined
Mar 19, 2021
Messages
18
Platform
  1. Windows
Hi,

I have the code below which works well. It checks to see if Cell "A1" is not empty if it is not empty then it runs the code only in the cells are blank in column A.

I would like to change the code so that it automatically checks each cell in column A, if has data then it runs the code. This code would add "0" to the empty cells.

Sub Empty_Cells()
'
Dim i As Long
Dim c As Long
Dim myRange As Range
Dim myCell As Range
Dim myCol As Range





Set myRange = Worksheets("Data").Range("A4:H12")



'I would like to change this line of code to a loop in column ("A5:A50") to check if the cell is Not Empty.

If Not IsEmpty(Range("A1").Value) = True Then



For Each myCell In myRange
c = c + 1
If IsEmpty(myCell) Then

myCell = 0
'myCell.Interior.Color = RGB(255, 87, 87)
i = i + 1
End If
Next myCell


MsgBox _
"There are total " & i & " empty cell(s) out of " & c & "."
'

End If
'
End Sub
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Hi,
What is exactly your obstacle ...?
VBA Code:
Sub Empty_Cells()
Dim i As Long
Dim c As Long
Dim myRange As Range
Dim myCell As Range
Dim myCol As Range

Set myRange = Worksheets("Data").Range("A5:A50")
'I would like to change this line of code to a loop in column ("A5:A50") to check if the cell is Not Empty.

    If Not IsEmpty(Range("A1").Value) = True Then
        For Each myCell In myRange
            c = c + 1
            If IsEmpty(myCell) Then
                myCell = 0
                'myCell.Interior.Color = RGB(255, 87, 87)
                i = i + 1
            End If
        Next myCell
            MsgBox _
            "There are total " & i & " empty cell(s) out of " & c & "."
    End If
End Sub
 
Upvote 0
Hi,
What is exactly your obstacle ...?
VBA Code:
Sub Empty_Cells()
Dim i As Long
Dim c As Long
Dim myRange As Range
Dim myCell As Range
Dim myCol As Range

Set myRange = Worksheets("Data").Range("A5:A50")
'I would like to change this line of code to a loop in column ("A5:A50") to check if the cell is Not Empty.

    If Not IsEmpty(Range("A1").Value) = True Then
        For Each myCell In myRange
            c = c + 1
            If IsEmpty(myCell) Then
                myCell = 0
                'myCell.Interior.Color = RGB(255, 87, 87)
                i = i + 1
            End If
        Next myCell
            MsgBox _
            "There are total " & i & " empty cell(s) out of " & c & "."
    End If
End Sub

I have a spreadsheet which I attached the image for. I want to run a code that adds zero to empty cells, (this part of the code I have), based on the condition that this only applies to the rows that have data in Column A, and the row is a variable. I want it to loop through A1... then apply the code, then A2 then apply the code, and so on.
 
Upvote 0
I want to run a code that adds zero to empty cells on a table, (this part of the code I have), based on the condition that this only applies to the rows that have data in Column A but one row at a time. I want it to loop through A1... then apply the code, then A2 then apply the code, and so on.
 
Upvote 0
Not sure to fully understand ...

To replace Blanks by 0, one line instruction is enough
Adjust YourRange to your actual Range :
VBA Code:
YourRange.Replace What:="", Replacement:="0"
 
Upvote 0
Not sure to fully understand ...

To replace Blanks by 0, one line instruction is enough
Adjust YourRange to your actual Range :
VBA Code:
YourRange.Replace What:="", Replacement:="0"
It should have a condition that column A of the row is not a blank cell, only if there is data in column A add a zero to the empty cells of the row.
 
Upvote 0
I think your range explanation may be a bit confusing.

It may be helpful to show us some example data and then your expected output. Images often clear up any confusion.

MrExcel has a tool called “XL2BB” that lets you post samples of your data that will allow us to copy/paste it to our Excel spreadsheets, so we can work with the same copy of data that you are. Instructions on using this tool can be found here: XL2BB Add-in

Note that there is also a "Test Here” forum on this board. This is a place where you can test using this tool (or any other posting techniques that you want to test) before trying to use those tools in your actual posts.
 
Upvote 0
Hi,
Have you tried to use Filter on Column A to work with your Target Range ...
 
Upvote 0
Hi,
Have you tried to use Filter on Column A to work with your Target Range ...
I have not. My objective is to add zeros to blank cells within the table Range A4:H12 only if column A has data in that row, if column A is empty then the cells remain empty.
 
Upvote 0
Hi,
You could test
VBA Code:
Sub TestBlanks()
Dim tbl As ListObject
Dim rng As Range
    'Change the Name of your Table and your Worksheet
    Set tbl = Worksheets("Sheet1").ListObjects("Table1")
    ' Filter to retain records Not Empty in Column A
    tbl.Range.AutoFilter Field:=1, Criteria1:="<>"
    'Define Range with Visible Cells Only
    Set rng = tbl.DataBodyRange.SpecialCells(xlCellTypeVisible)
    ' Replace Blanks by Zero
    rng.Replace What:="", Replacement:="0"
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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