Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,646
Default last row in ANY column

Hi all,
I found several tips for finding the last row containing data in a specific
column. But what can I do for finding the last row containing not empty
cells in any of the columns?
Stefi

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default last row in ANY column

Sub GetRealLastCell()
Dim RealLastRow As Long
Dim RealLastColumn As Long
Range("A1").Select
On Error Resume Next
RealLastRow = _
Cells.Find("*", [A1], , , xlByRows, xlPrevious).Row
RealLastColumn = _
Cells.Find("*", [A1], , , xlByColumns, xlPrevious).Column
Cells(RealLastRow, RealLastColumn).Select
End Sub


so you can use just this line:



RealLastRow = _
Cells.Find("*", [A1], , , xlByRows, xlPrevious).Row




--

Regards,

Tom Ogilvy







"Stefi" wrote in message
...
Hi all,
I found several tips for finding the last row containing data in a

specific
column. But what can I do for finding the last row containing not empty
cells in any of the columns?
Stefi



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 692
Default last row in ANY column

Dim LastRow as Long

LastRow = Cells.SpecialCells(xlLastCell).Row

--
steveB

Remove "AYN" from email to respond
"Stefi" wrote in message
...
Hi all,
I found several tips for finding the last row containing data in a
specific
column. But what can I do for finding the last row containing not empty
cells in any of the columns?
Stefi



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default last row in ANY column

Many times gives inaccurate results for me.

--
Regards,
Tom Ogilvy


"STEVE BELL" wrote in message
news:Ckipe.12887$yS2.5191@trnddc07...
Dim LastRow as Long

LastRow = Cells.SpecialCells(xlLastCell).Row

--
steveB

Remove "AYN" from email to respond
"Stefi" wrote in message
...
Hi all,
I found several tips for finding the last row containing data in a
specific
column. But what can I do for finding the last row containing not empty
cells in any of the columns?
Stefi





  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 692
Default last row in ANY column

Tom,

Thanks! Forgot that Excel remembers the last cell even if all entries have
been cleared.

--
steveB

Remove "AYN" from email to respond
"Tom Ogilvy" wrote in message
...
Many times gives inaccurate results for me.

--
Regards,
Tom Ogilvy


"STEVE BELL" wrote in message
news:Ckipe.12887$yS2.5191@trnddc07...
Dim LastRow as Long

LastRow = Cells.SpecialCells(xlLastCell).Row

--
steveB

Remove "AYN" from email to respond
"Stefi" wrote in message
...
Hi all,
I found several tips for finding the last row containing data in a
specific
column. But what can I do for finding the last row containing not empty
cells in any of the columns?
Stefi









  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,646
Default last row in ANY column

Thanks to both of you!
Is it true that if it's certain that no cells were cleared after the last
one, then Steve's simpler solution gives an accurate result?
Stefi


€žSTEVE BELL€ť ezt Ă*rta:

Tom,

Thanks! Forgot that Excel remembers the last cell even if all entries have
been cleared.

--
steveB

Remove "AYN" from email to respond
"Tom Ogilvy" wrote in message
...
Many times gives inaccurate results for me.

--
Regards,
Tom Ogilvy


"STEVE BELL" wrote in message
news:Ckipe.12887$yS2.5191@trnddc07...
Dim LastRow as Long

LastRow = Cells.SpecialCells(xlLastCell).Row

--
steveB

Remove "AYN" from email to respond
"Stefi" wrote in message
...
Hi all,
I found several tips for finding the last row containing data in a
specific
column. But what can I do for finding the last row containing not empty
cells in any of the columns?
Stefi








  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default last row in ANY column

Hi Steffi,

Is it true that if it's certain that no cells were cleared after the last
one, then Steve's simpler solution gives an accurate result?


Note Tom Ogilvy's comment:

so you can use just this line:


RealLastRow = _
Cells.Find("*", [A1], , , xlByRows, xlPrevious).Row


The macro provided by Tom:
Returns the last populated row
Returns the last populated column
Selects the last populated cell.

Tom's oneliner would seem to provide a solution to your explicit request
which is both simple (short) and consistently accurate.


---
Regards,
Norman



"Stefi" wrote in message
...
Thanks to both of you!
Is it true that if it's certain that no cells were cleared after the last
one, then Steve's simpler solution gives an accurate result?
Stefi


"STEVE BELL" ezt írta:

Tom,

Thanks! Forgot that Excel remembers the last cell even if all entries
have
been cleared.

--
steveB

Remove "AYN" from email to respond
"Tom Ogilvy" wrote in message
...
Many times gives inaccurate results for me.

--
Regards,
Tom Ogilvy


"STEVE BELL" wrote in message
news:Ckipe.12887$yS2.5191@trnddc07...
Dim LastRow as Long

LastRow = Cells.SpecialCells(xlLastCell).Row

--
steveB

Remove "AYN" from email to respond
"Stefi" wrote in message
...
Hi all,
I found several tips for finding the last row containing data in a
specific
column. But what can I do for finding the last row containing not
empty
cells in any of the columns?
Stefi










Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
divide column(x) by column(y) to give column(x/y) in excel? James New Users to Excel 2 April 24th 23 11:46 AM
Referencing date column A & time column B to get info from column TVGuy29 Excel Discussion (Misc queries) 1 January 24th 08 09:50 PM
Return text in Column A if Column B and Column K match jeannie v Excel Worksheet Functions 4 December 13th 07 07:36 PM
Based on a condition in one column, search for a year in another column, and display data from another column in the same row look [email protected] Excel Discussion (Misc queries) 1 December 27th 06 05:47 PM
Divide Column A by Column B multiply Column C Stumped Excel Worksheet Functions 3 December 28th 05 05:51 AM


All times are GMT +1. The time now is 09:17 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"