Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

Thread: Find first empty cell in column

Started 1 month, 1 week ago by TomHull
Hi, I need a formula that finds the first empty cell at the bottom of a column of data. I have tried using the find and select function in a macro and it fails to find cells often. Have also tried using a MATCH formula but it doesnt seem to like finding an empty cell. Any Help, Thanks Tom
Site: Microsoft Excel forum  Microsoft Excel forum - site profile
Forum: Excel Discussion (Misc queries)  Excel Discussion (Misc queries) - forum profile
Total authors: 3 authors
Total thread posts: 3 posts
Thread activity: no new posts during last week
Domain info for: excelbanter.com

Other posts in this thread:

Bernard Liengme[_3_] replied 1 month, 1 week ago
last nonblank Non-array, non-volatile formula for contents of last, non-blank cell in a range: =LOOKUP(2,1/(A1:A100<>""),A1:A100) For last non-blank text =LOOKUP(REPT("z",255),Sheet1!e1:e100,Sheet1!e1:e1 0 0) You can shorten that to: =LOOKUP(REPT("z",255),Sheet1!e1:e100) Last non-zero =LOOKUP(2,1/(B7:H7<>0),B7:H7) -- Bernard V Liengme Microsoft Excel MVP http://...

Jacob Skaria replied 1 month, 1 week ago
Since you have tried a macro..try the below..If the first cell is not blank try the below.... Dim varFound As Variant Set varFound = Columns(1).Find("", LookIn:=xlValues, lookat:=xlWhole) MsgBox varFound.Address If this post helps click Yes --------------- Jacob Skaria "TomHull" wrote: > Hi, > > I need a formula that finds the first empty cell at the bottom of a column...

 

Top contributing authors

Name
Posts
Jacob Skaria
1
user's latest post:
Find first empty cell in column
Published (2009-11-09 02:37:00)
Since you have tried a macro..try the below..If the first cell is not blank try the below.... Dim varFound As Variant Set varFound = Columns(1).Find(&quot;&quot;, LookIn:=xlValues, lookat:=xlWhole) MsgBox varFound.Address If this post helps click Yes --------------- Jacob Skaria &quot;TomHull&quot; wrote: &gt; Hi, &gt; &gt; I need a formula that finds the first empty cell at the bottom of a column &gt; of data....
TomHull
1
user's latest post:
Find first empty cell in column
Published (2009-11-09 01:19:00)
Hi, I need a formula that finds the first empty cell at the bottom of a column of data. I have tried using the find and select function in a macro and it fails to find cells often. Have also tried using a MATCH formula but it doesnt seem to like finding an empty cell. Any Help, Thanks Tom
Bernard Liengme[_3_]
1
user's latest post:
Find first empty cell in column
Published (2009-11-09 01:39:00)
last nonblank Non-array, non-volatile formula for contents of last, non-blank cell in a range: =LOOKUP(2,1/(A1:A100&lt;&gt;&quot;&quot;),A1:A100) For last non-blank text =LOOKUP(REPT(&quot;z&quot;,255),Sheet1!e1:e100,Sheet1!e1:e10 0) You can shorten that to: =LOOKUP(REPT(&quot;z&quot;,255),Sheet1!e1:e100) Last non-zero =LOOKUP(2,1/(B7:H7&lt;&gt;0),B7:H7) -- Bernard V Liengme Microsoft Excel MVP...

Related threads on "Microsoft Excel forum":

Related threads on other sites:

Thread profile page for "Find first empty cell in column" on http://excelbanter.com. This report page is a snippet summary view from a single thread "Find first empty cell in column", located on the Message Board at http://excelbanter.com. This thread profile page shows the thread statistics for: Total Authors, Total Thread Posts, and Thread Activity