+ Reply to Thread
Results 1 to 3 of 3

Pointers??

  1. #1
    Registered User
    Join Date
    06-22-2005
    Posts
    4

    Pointers??

    g'day,
    i'm trying to set pointers, so that a cell will automatically be selected once data has been entered into another cell..

    Thanx

    JC

  2. #2
    Registered User
    Join Date
    06-21-2005
    Posts
    19
    Not sure what you mean by 'pointers', but you can use the "Worksheet_Change" event to move the active cell when the worksheet, er, changes.


    Gaz
    2B OR NOT 2B, that is FF

  3. #3
    Dave O
    Guest

    Re: Pointers??

    Here's how to do it:

    1. Display the VB editor
    2. In the window on the left margin, find VBAProject(Your Filename)
    3. Right click the relevant tab name
    4. Select View Code
    5. On the main window, change the dropdown from (General) to Worksheet
    6. Paste in the following code:

    Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Address = "$A$2" Then Range("B10").Select
    End Sub

    This code causes the cell pointer to move to B10 when the value in A2
    in changed. You'll probably need to change those cell addresses-
    please note that the $ are required.

    Hope this does it for you!


+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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