T Tom Atkisson Sep 30, 2003 #1 Is there a way for the ActiveCell to be at the top left of a worksheet?
D Don Guillett Oct 1, 2003 #3 Try one of these Sub CtrlHome() 'ActiveWindow.VisibleRange.Resize(1, 1).Select SendKeys "^{home}" End Sub
Try one of these Sub CtrlHome() 'ActiveWindow.VisibleRange.Resize(1, 1).Select SendKeys "^{home}" End Sub
C Chip Pearson Oct 1, 2003 #4 Tom, Try the following: Sub ActiveCellToTopLeft() ActiveWindow.ScrollColumn = ActiveCell.Column ActiveWindow.ScrollRow = ActiveCell.Row End Sub
Tom, Try the following: Sub ActiveCellToTopLeft() ActiveWindow.ScrollColumn = ActiveCell.Column ActiveWindow.ScrollRow = ActiveCell.Row End Sub