Keyboard shortcut or selecting entire column

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top