+ Reply to Thread
Results 1 to 3 of 3

Keyboard shortcut or selecting entire column

Hybrid View

  1. #1
    Precious_Stone
    Guest

    Keyboard shortcut or selecting entire column

    Which one is the ks for selecting all the cells in a column up to the last
    used cell including blank cells in between?

    Thanks

  2. #2
    Forum Expert
    Join Date
    03-23-2004
    Location
    London, England
    MS-Off Ver
    Excel 2019
    Posts
    7,082
    I always use Ctrl+left shift + down arrow
    Regards
    Special-K

    Ensure you describe your problem clearly, I have little time available to solve these problems and do not appreciate numerous changes to them.

  3. #3
    Gord Dibben
    Guest

    Re: Keyboard shortcut or selecting entire column

    There isn't one AFAIK

    I use a macro assigned to a button.

    Sub GODOWN()
    Dim maxrow As Long
    With ActiveCell.Parent.UsedRange
    maxrow = .Cells(.Cells.Count).Row + 1
    End With
    ActiveCell.Parent.Cells(maxrow, ActiveCell.Column).End(xlUp).Select
    End Sub


    Gord Dibben MS Excel MVP

    On Tue, 18 Jul 2006 08:23:02 -0700, Precious_Stone
    <PreciousStone@discussions.microsoft.com> wrote:

    >Which one is the ks for selecting all the cells in a column up to the last
    >used cell including blank cells in between?
    >
    >Thanks



+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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