+ Reply to Thread
Results 1 to 7 of 7

Go to last used cell in a row and/or column

  1. #1
    Forum Contributor
    Join Date
    08-14-2013
    Location
    LA Baby!!
    MS-Off Ver
    Excel 2007
    Posts
    1,598

    Go to last used cell in a row and/or column

    Hello. How can I go to the last used cell in a row or column. I know about command up/down/left/right but I need to go the absolute last used cell and there are blank spaces in my data. Maybe vba code? I'd like to create a shortcut based on the row/column that I'm in.

  2. #2
    Valued Forum Contributor
    Join Date
    07-07-2014
    Location
    Washington DC
    MS-Off Ver
    2007
    Posts
    1,047

    Re: Go to last used cell in a row and/or column

    Try ctrl+end

  3. #3
    Forum Contributor
    Join Date
    08-14-2013
    Location
    LA Baby!!
    MS-Off Ver
    Excel 2007
    Posts
    1,598

    Re: Go to last used cell in a row and/or column

    That's what I just said haha. THere are blanks so that doesn't work.

  4. #4
    Valued Forum Contributor
    Join Date
    07-07-2014
    Location
    Washington DC
    MS-Off Ver
    2007
    Posts
    1,047

    Re: Go to last used cell in a row and/or column

    ctrl+end will go to the last row/column regardless of blanks.

  5. #5
    Forum Contributor
    Join Date
    08-14-2013
    Location
    LA Baby!!
    MS-Off Ver
    Excel 2007
    Posts
    1,598

    Re: Go to last used cell in a row and/or column

    Hmmm, that doesn't really work. Try it yourself. Write a bunch of numbers in a column. Control - End doesn't take you to the last cell in the column.

  6. #6
    Forum Contributor
    Join Date
    08-14-2013
    Location
    LA Baby!!
    MS-Off Ver
    Excel 2007
    Posts
    1,598

    Re: Go to last used cell in a row and/or column

    It takes you to the last cell period, which isn't what I need.

  7. #7
    Forum Contributor
    Join Date
    06-02-2005
    Posts
    100

    Re: Go to last used cell in a row and/or column

    ya know, in the various code snipets I've given you in the last couple of days, I've got finding the last populated cell in a column in there several times.

    here it is, again:

    Please Login or Register  to view this content.
    Which is literally saying:

    "Activesheet" - On the Activesheet
    ".Cells(rows.count, 1)" - count the number of rows in col 1 (A) to the end of the worksheet.
    ".end(xlup)" - from the bottom row work back UP to the last cell that isn't blank.
    ".row" - Return that row number.

    there are other ways to do this, but I've always found this one the easiest.
    Last edited by Ouka; 09-24-2015 at 07:41 PM.

+ 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: 7
    Last Post: 06-01-2015, 07:19 AM
  2. Replies: 3
    Last Post: 02-13-2013, 04:05 PM
  3. [SOLVED] Delete Cell Numbers of Column B From Column A (Column B Small and Column A too big)
    By it_electronics2000 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-09-2012, 08:56 AM
  4. [SOLVED] Delete Cell Numbers of Column B From Column A (Column B Small and Column A too big)
    By it_electronics2000 in forum Excel General
    Replies: 4
    Last Post: 04-07-2012, 09:14 AM
  5. [SOLVED] Delete Cell Numbers of Column B From Column A (Column B Small and Column A too big)
    By it_electronics2000 in forum Excel General
    Replies: 5
    Last Post: 04-06-2012, 12:02 PM
  6. [SOLVED] Delete Cell Numbers of Column B From Column A (Column B Small and Column A too big)
    By it_electronics2000 in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 04-06-2012, 11:18 AM
  7. [SOLVED] Delete Cell Numbers of Column B From Column A (Column B Small and Column A too big)
    By it_electronics2000 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 04-06-2012, 11:13 AM

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