Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Robert Gillard
 
Posts: n/a
Default How can I find bottom row of a spreadsheet

I have a spreadsheet that has rows added to it by different areas of the
office. I need to set up a "front sheet" that will always show the last
(bottom) row of "sheet1".

I think there is a expression that will do this for me, but I do not know
what it is or how to construct it. (I think it comes down the rows until it
hits a blank then goes back up one row)

Can anybody help with this please

Bob


  #2   Report Post  
Jason Morin
 
Posts: n/a
Default

It sounds like there won't be any blank rows. In that
cases, you could use:

=INDEX(Sheet2!A:A,COUNTA(Sheet2!A:A))

to pull in the last value in col. A of Sheet2. Then
repeat the formula to pull in the last value in col. B,
etc.

HTH
Jason
Atlanta, GA

-----Original Message-----
I have a spreadsheet that has rows added to it by

different areas of the
office. I need to set up a "front sheet" that will

always show the last
(bottom) row of "sheet1".

I think there is a expression that will do this for me,

but I do not know
what it is or how to construct it. (I think it comes

down the rows until it
hits a blank then goes back up one row)

Can anybody help with this please

Bob


.

  #3   Report Post  
Gord Dibben
 
Posts: n/a
Default

Robert

By worksheet function........

=ADDRESS(MATCH(9.99999999999999E+307,A:A),1
to return the address of last numeric cell in column A

=LOOKUP(9.99999999999999E+307,A:A)
to return the last numeric value in Column A

And just for helluvit....

=LOOKUP(REPT("z",255),A:A)
to return the last non-numeric value in Column A

=ADDRESS(MATCH(REPT("z",255),A:A),1)
to return the address of last non-numeric cell in column A

By VBA macro..........

Sub findbottom()
ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Select
End Sub


Gord Dibben Excel MVP


On Tue, 22 Mar 2005 22:53:50 GMT, "Robert Gillard"
wrote:

I have a spreadsheet that has rows added to it by different areas of the
office. I need to set up a "front sheet" that will always show the last
(bottom) row of "sheet1".

I think there is a expression that will do this for me, but I do not know
what it is or how to construct it. (I think it comes down the rows until it
hits a blank then goes back up one row)

Can anybody help with this please

Bob


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
Find matching records in two worksheets kittybat Excel Discussion (Misc queries) 3 March 30th 05 12:11 AM
Cant find the Formatting Toolbar on my Spreadsheet. FREDA Excel Worksheet Functions 4 March 1st 05 05:49 PM
How do I delete blank rows at the bottom of a spreadsheet to get . Miklaurie Excel Discussion (Misc queries) 1 January 26th 05 02:30 PM
I have a set of numbers in an excel spreadsheet and want to find t Charles Excel Discussion (Misc queries) 4 January 11th 05 11:39 PM
Excel can't find the end of the spreadsheet (Ctrl+end) verc Excel Worksheet Functions 2 November 2nd 04 06:51 AM


All times are GMT +1. The time now is 08:13 PM.

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"