Results 1 to 5 of 5

Drop down list that jumps to a cell in the same sheet

Threaded View

  1. #2
    Forum Expert Logit's Avatar
    Join Date
    12-23-2012
    Location
    North Carolina
    MS-Off Ver
    Excel 2019 Professional Plus - 2007 Enterprise
    Posts
    7,396

    Re: Drop down list that jumps to a cell in the same sheet

    .
    Paste in the Sheet Level Module :

    Option Explicit
    
    Private Sub ComboBox1_Change()
    Dim x As String
    x = ComboBox1.Value
    
        Sheets("Sheet1").Range(x).Select
    
    End Sub
    
    Private Sub Worksheet_Activate()
     
    With ComboBox1
            .Clear
            .AddItem "A1"
            .AddItem "C10"
            .AddItem "B25"
            
    End With
        
    End Sub
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Get last n row data from Columns in another sheet based on cell value using drop-down list
    By analystbank in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 09-14-2017, 09:16 AM
  2. Replies: 9
    Last Post: 09-20-2015, 11:30 AM
  3. [SOLVED] VBA Code to copy cell value on another sheet on drop down list changed
    By aftermath09 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 06-16-2015, 12:27 AM
  4. Replies: 5
    Last Post: 09-22-2014, 05:28 AM
  5. Moving row to different sheet depending on cell value from drop down list
    By antagius in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-06-2012, 06:06 AM
  6. Replies: 0
    Last Post: 03-01-2012, 12:13 PM
  7. Replies: 5
    Last Post: 10-27-2005, 01:55 PM

Tags for this Thread

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