PC Review


Reply
Thread Tools Rate Thread

Creating a Search Cell

 
 
=?Utf-8?B?Q29uZnVzZWQgYXQgV29yaw==?=
Guest
Posts: n/a
 
      25th Sep 2007
I have a customer list in column 1 from a4 to a500. I want to be able to in
a1 type some letters and the customer corresponding to the letters i am
typing in comes up. Exactly like a search engine for excel. Any help on
this?
 
Reply With Quote
 
 
 
 
=?Utf-8?B?Q0xS?=
Guest
Posts: n/a
 
      25th Sep 2007
Until something better comes along, you might consider just highlighting
column A and using the Edit > Find, procedure..


Vaya con Dios,
Chuck, CABGx3


"Confused at Work" wrote:

> I have a customer list in column 1 from a4 to a500. I want to be able to in
> a1 type some letters and the customer corresponding to the letters i am
> typing in comes up. Exactly like a search engine for excel. Any help on
> this?

 
Reply With Quote
 
JW
Guest
Posts: n/a
 
      25th Sep 2007
Right click on the tab of the sheet that you want this functionality
added to and select View Code. Paste in the code below.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$1" Then
Columns(1).Find(What:=Target.Text & "*", After:=Range("A3"), _
LookIn:=xlFormulas, LookAt:=xlWhole, _
SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
End If
End Sub

Confused at Work wrote:
> I have a customer list in column 1 from a4 to a500. I want to be able to in
> a1 type some letters and the customer corresponding to the letters i am
> typing in comes up. Exactly like a search engine for excel. Any help on
> this?


 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      25th Sep 2007
Not quite the same, but maybe you could apply Data|Filter|autofilter to column
A.

Then you could use the dropdown to do a custom filter:
begins with
ends with
contains
to find all the matching entries.

Confused at Work wrote:
>
> I have a customer list in column 1 from a4 to a500. I want to be able to in
> a1 type some letters and the customer corresponding to the letters i am
> typing in comes up. Exactly like a search engine for excel. Any help on
> this?


--

Dave Peterson
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Creating a UDF to search a cell's formula kittronald Microsoft Excel Programming 8 27th Sep 2011 10:07 PM
creating a formula that looks at the value of another cell and usesthat value as the row value for for a referenced cell Kerry Microsoft Excel Charting 2 16th Mar 2010 12:29 AM
Creating user input Search with 3rd party search engines phl Microsoft ASP .NET 0 19th Feb 2008 05:11 PM
Creating a separate cell entry for every individual line in a cell =?Utf-8?B?RGF2ZXlDNFM=?= Microsoft Excel Misc 4 15th Mar 2007 05:15 PM
Creating Macro to copy information from cell into another cell using Add Comments pmipalma Microsoft Excel Programming 2 6th Oct 2006 07:46 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:37 PM.