+ Reply to Thread
Results 1 to 4 of 4

Excel 2007 : Skip columns on condition

Hybrid View

  1. #1
    Registered User
    Join Date
    05-13-2011
    Location
    Birmingham
    MS-Off Ver
    Excel 2007
    Posts
    78

    Skip columns on condition

    Hi,

    I previously worked on SPSS data entry version where we can apply skipping instructions like if code 1 entered in A then focus moves to C else B. Now someone told me to switch to Excel due to its friendly GUI and widely familiarity. My question:

    I applied checks on columns using data validation. Now I want if the data entry operator enters 1 in A then the focus automatically moves to C else to B.

    Please find attached sheet for your convenience.

    Thanks.
    Attached Files Attached Files
    Last edited by nlm; 11-25-2011 at 01:45 AM.

  2. #2
    Registered User
    Join Date
    05-13-2011
    Location
    Birmingham
    MS-Off Ver
    Excel 2007
    Posts
    78

    Re: Skip columns on condition

    Its quite difficult for me to digest that nobody has an idea on this!!!!

  3. #3
    Forum Guru
    Join Date
    05-24-2011
    Location
    India
    MS-Off Ver
    365
    Posts
    2,243

    Re: Skip columns on condition

    That would require VBA. i don't know much about VBA. You can try this in a COPY of your file.

    Right click from the sheet name & click View Code then paste this in the white box shown on right side.

    Private Sub Worksheet_Change(ByVal Target As Range)
        If Target.Column <> 1 Or Target.Count <> 1 Then Exit Sub
        If Target.Value = 1 Then
        Target.Offset(, 2).Select
        End If
    End Sub
    See the attached. You must save your file As Excel Macro Enabled Workbook.
    Attached Files Attached Files
    Regards,
    Haseeb Avarakkan

    __________________________________
    "Feedback is the breakfast of champions"

  4. #4
    Registered User
    Join Date
    05-13-2011
    Location
    Birmingham
    MS-Off Ver
    Excel 2007
    Posts
    78

    Re: Skip columns on condition

    Thanks a million Haseeb!

    It worked!!

+ 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