Excel Active Cell

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

Guest

I have a Visual Basic command button on an Excel worksheet. When the command
button is clicked I need the code to make use of the column number of the
active cell. How is this found?
 
Try something like this

MsgBox ActiveCell.Column

activecell.entirecolumn.select

or whtatever...
 
Back
Top