Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. dewdrop

    How to activate a cell in the same column on the next row in Excel.

    Rather than using ActiveCell.Next.Activate use the following: ActiveCell.Offset(1, 0).Activate 'Offset' uses two parameters the first is rows, and the second is columns. So the above statement says move down one row, stay in the same column. Positive numbers move you down in rows and to the...

Part and Inventory Search

Back
Top