+ Reply to Thread
Results 1 to 2 of 2

Automatically Moving the Cursor to Next Cell

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    07-17-2012
    Location
    bangalore
    MS-Off Ver
    Excel 2007
    Posts
    461

    Automatically Moving the Cursor to Next Cell

    Hi All,

    Is there any vb code or macro to move from once cell to next row after 1 minute. Here I need to adjust the timings accordingly.

    Regards
    Sathish

  2. #2
    Valued Forum Contributor Miroslav R.'s Avatar
    Join Date
    05-16-2013
    Location
    NMnV, Slovakia
    MS-Off Ver
    Excel 2007
    Posts
    479

    Re: Automatically Moving the Cursor to Next Cell

    Hi there,

    You can use APPLICATION.ONTIME

    E.g.:
    Sub SelectAnother()
    ActiveCell.Offset(1, 0).Select
    Application.OnTime Now() + TimeSerial(0, 1, 0), "SelectAnother"
    End Sub
    For disabling:
    Sub StopSelecting()
    Application.OnTime Now() + TimeSerial(0, 1, 0), "SelectAnother", , False
    End Sub
    Does it help?
    Regards
    Miroslav R.

    (If You like my solutions, feel free to add reputation.)

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 1
    Last Post: 05-15-2014, 12:06 PM
  2. [SOLVED] moving cursor to required cell
    By karen waghorn in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 03-31-2013, 10:14 AM
  3. Cursor & Cell not Moving?
    By desertdude1 in forum Excel General
    Replies: 3
    Last Post: 04-27-2009, 10:08 AM
  4. Moving cursor along one cell
    By tony0710 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-20-2009, 04:16 AM
  5. VBA for tab order/moving cursor to a certain cell
    By Frederic in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-07-2005, 11:05 AM

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