+ Reply to Thread
Results 1 to 2 of 2

How to make TAB key work in a protected worksheet

  1. #1
    Sri Ram
    Guest

    How to make TAB key work in a protected worksheet

    I have protected a worksheet in excel 2003 and have used allowedits to make
    some rows editable. I noticed that when I pressed the TAB key, it is not
    moving to the next cell. It remains in the same cell. TAB key is not working.
    Is there any option for making the TAB key work?

  2. #2
    halimnurikhwan@yahoo.com
    Guest

    Re: How to make TAB key work in a protected worksheet

    Hi Sri,
    TRY THIS :
    Sub TabENABLED()
    Application.OnKey "{tab}", "PROCEDURE1"
    End Sub

    Sub PROCEDURE1()
    ActiveCell.Offset(0, 1).Select
    End Sub



    rgds,

    halim
    Sri Ram menuliskan:
    > I have protected a worksheet in excel 2003 and have used allowedits to make
    > some rows editable. I noticed that when I pressed the TAB key, it is not
    > moving to the next cell. It remains in the same cell. TAB key is not working.
    > Is there any option for making the TAB key work?



+ 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