Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I have a column of about 1000 names surnames. to enter a new name, or searching for a name I would like to have some kind of search box so when i type the first letter or the first 2 letters, i only see the names which starts with those letters. Has anyone any idea / solution? thanks for all the help swingleft |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Apr 25, 12:59*am, "Swingleft" wrote:
Hi, I have a column of about 1000 names surnames. to enter a new name, or searching for a name I would like to have some kind of search box so when i type the first letter or the first 2 letters, i only see the names which starts with those letters. Has anyone any idea / solution? thanks for all the help swingleft try this... this may server your purpose 1. convert the data into a table say "Table1" 2. Write a macro that filters the table based on a value passed: Sub Macro1(Val As String) Range("Table1[[#Headers],[Column1]]").Select Selection.AutoFilter ActiveSheet.ListObjects("Table1").Range.AutoFilter Field:=1, Criteria1:=LCase$(Val) & "*", Operator:=xlAnd End Sub 3. use cell A1 in your sheet to enter the search criteria. 4. Call the macro in the worksheet_change event Private Sub Worksheet_Change(ByVal Target As Range) Macro1 LCase$(Target.Cells(1, 1)) End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to create Login & Log out Spread sheet in Excel with automated Attendance sheet | Excel Worksheet Functions | |||
Split text file into Excel sheet and separate the final results intoa new sheet | Excel Worksheet Functions | |||
excel sheet bootom half sheet goes behind top part of sheet | Excel Worksheet Functions | |||
Excel VBA (?!)-refer to a cell on Sheet to left of X, based on criteria on Sheet X | Excel Programming | |||
excel - macro code to open a protected sheet, enter passowrd, and then protect sheet | Excel Programming |