+ Reply to Thread
Results 1 to 4 of 4

Find empty cell in Column

  1. #1
    Registered User
    Join Date
    10-31-2013
    Location
    Australia
    MS-Off Ver
    Excel 2003
    Posts
    22

    Find empty cell in Column

    Hi I have a worksheet when I want to loop through column N to find any empty cells.

    The number of rows is variable.

    I also want it to come up with a message prompt
    Can anyone help.

    Thanks

    T
    Attached Files Attached Files
    Last edited by thaykhov; 06-13-2014 at 01:45 AM.

  2. #2
    Forum Contributor
    Join Date
    08-16-2012
    Location
    Sydney
    MS-Off Ver
    Excel 2019
    Posts
    209

    Re: Find empty cell in Column

    Hi,

    Hey fellow Australian, please see attached file... or you can copy the code below!

    Formula: copy to clipboard
    Please Login or Register  to view this content.


    Cheers,

    Lex!
    Attached Files Attached Files

  3. #3
    Forum Contributor
    Join Date
    03-21-2012
    Location
    Ho Chi Minh city
    MS-Off Ver
    Excel 2003
    Posts
    180

    Re: Find empty cell in Column

    PHP Code: 
    Option Explicit
    Sub GPE
    ()
     
    Dim Cls As Range
     
    For Each Cls In Columns("N:N").SpecialCells(xlCellTypeBlanks)
        
    MsgBox Cls.Address
     Next Cls
    End Sub 

  4. #4
    Registered User
    Join Date
    10-31-2013
    Location
    Australia
    MS-Off Ver
    Excel 2003
    Posts
    22

    Re: Find empty cell in Column

    Great thanks for the prompt response

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 5
    Last Post: 05-13-2014, 10:19 AM
  2. Need to find empty filled cells in a column and copy to the empty cell below
    By Grahamfeeley in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-30-2014, 10:09 AM
  3. [SOLVED] Macro to find the empty cell in a column and copy a adjacent row to another column.
    By naga in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 07-18-2013, 07:44 AM
  4. [SOLVED] Find next empty cell in column
    By Scott Taylor in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 01-12-2013, 04:26 PM
  5. Find first empty cell in column.
    By dlw in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-26-2012, 12:16 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1