+ Reply to Thread
Results 1 to 3 of 3

Create a search box

Hybrid View

Justmegan93 Create a search box 07-29-2014, 11:30 AM
stnkynts Re: Create a search box 07-29-2014, 11:38 AM
Justmegan93 Re: Create a search box 07-31-2014, 09:06 AM
  1. #1
    Registered User
    Join Date
    06-26-2014
    Location
    Scotland
    MS-Off Ver
    10
    Posts
    37

    Create a search box

    Looking for help on creating a search box that would search the names in the first row and take me to the column that matches the name ?

    Im new to macros and VBA so any help would be great

  2. #2
    Forum Expert
    Join Date
    07-31-2010
    Location
    California
    MS-Off Ver
    Excel 2007
    Posts
    4,070

    Re: Create a search box

    Ctrl +F doesn't work for this? Either way here is a way that incorporates an input box:

    Sub Find_Name()
    Dim strBox As String
    Dim rFind As Range
    
    strBox = InputBox("Enter the name you want to search for.")
    
    If strBox = "" Then Exit Sub
    
    Set rFind = Rows("1:1").Find(What:=strBox, LookIn:=xlValues, LookAt:=xlPart)
    
    If Not rFind Is Nothing Then
        rFind.Select
    Else
        MsgBox ("That name could not be found")
    End If
    
    End Sub

  3. #3
    Registered User
    Join Date
    06-26-2014
    Location
    Scotland
    MS-Off Ver
    10
    Posts
    37

    Re: Create a search box

    Perfect
    thankyou

+ 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: 2
    Last Post: 09-13-2013, 11:02 AM
  2. [SOLVED] Macro/s to create Search Bar to filter to search terms entered activated by Command Button
    By JasonRay in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 06-08-2013, 03:44 PM
  3. how to create a search box
    By hence04 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 04-24-2013, 10:40 PM
  4. create search box
    By donjuan88 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-06-2011, 07:23 AM
  5. How to create a logical search?
    By Jermdog in forum Excel - New Users/Basics
    Replies: 4
    Last Post: 03-16-2010, 11:53 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