Loop over columns, returning row numbers with empty cells

Christiaan

Board Regular
Joined
Nov 5, 2012
Messages
81
Hello all.

I am trying to compile a VBA-code that will go down a column, find an empty cell, write the row-number and continues.
Once the first column is finished, it should 'jump' to the next column, until there are no more columns left.

I did get the code working to write the empty cell row-numbers, including the offset. But I'm getting stuck on looping over the columns.
Any ideas would be greatly appreciated!

This is the code I have so far:
Code:
Sub FindEmptyRowNumbers()

Dim i As Integer
Dim j As Integer
Dim RowCount As Integer

RowCount = Worksheets("Sheet1").Range("A1").CurrentRegion.Rows.Count

Worksheets("References").Range("A8").Select
j = 1
For i = 1 To RowCount
    If Worksheets("Sheet1").Range("C" & i).Value = "" Then
    ActiveCell.Offset(0, j).Value = i
    j = j + 1
    End If
Next

End Sub
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Your code looks a little flaky to me. I tested it out, and it does not seem to work very well (it was returning incorrect numbers, and was writing across the column for things it finds down the row).

Can you tell if more detail exactly how you want this to work?
Specifically,
- is "Sheet1" the sheet you want to search?
- is "References" the sheet you want to write the results to?
- how exactly do you want these results written (starting cell & direction)?
- with multiple columns, do you still only want to return the row reference, or the column reference as well?
 
Upvote 0
Hey Joe, thanks for your response.

What I want it to do:
- Check column A on sheet1 (for example) and write each row number that has a blank cell onto the 'references' sheet.
- When column A is finished, repeat the process for column B.
- When column B is finished, repeat the process for column C.

The code I have so far works fine on my worksheet, but for privacy reasons I renamed the sheets in the code.

I was thinking to use something like a 'For each column', but my mind went blank. LOL
 
Upvote 0
It still seems a little confusing, however may I offer a solution for how I understood the question:

Code:
Sub FindEmptyRowNumbers()
    Dim sh1 As Worksheet, shRef As Worksheet
    Dim i As Long, j As Long, lngRow As Long, lngCol As Long, iRow As Long, iCol As Long
    
    Set sh1 = Worksheets("Sheet1")
    Set shRef = Worksheets("References")
    
    lngRow = sh1.UsedRange.Rows.Count
    lngCol = sh1.UsedRange.Columns.Count
    
    jCol = 0
    For j = 1 To lngCol
        iRow = 0
        For i = 1 To lngRow
            If sh1.Cells(i, j).Value = "" Then shRef.Cells(8 + iRow, 1 + j + jCol).Value = i: iRow = iRow + 1
        Next i
        iCol = iCol + 1
    Next j
End Sub

This will check each cell in Sheet1 and consolidate a list of the empty row numbers in the corresponding column on the References sheet (plus 1 since you started yours from cell B8), starting from row 8. So you are left with a table in the end of empty row numbers by column.
 
Upvote 0
Hello Dim Me,

This code works perfectly, thank you so much for the suggestion.
I'd like to make one small adjustment... Where/ how can I define where the table is being written? I found the row number, but where to define the column number to start?

Warm regards,
 
Upvote 0
Glad to help,

In the following line:

Code:
If sh1.Cells(i, j).Value = "" Then shRef.Cells(8 + iRow, 1 + j + jCol).Value = i: iRow = iRow + 1

shRef.Cells(8 + iRow, 1 + j + jCol)

The 8 adjusts where the starting row is, and the 1 adjusts where the starting column is.
 
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,242
Members
452,623
Latest member
russelllowellpercy

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