Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have Worksheet 2 with a lot of data. I need to have an input cell on WS1
where I can input serch criteria ("text") as needed and it will then show the results on WS1. Any help would be appreciated! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You can do this with an Advanced Filter, manually or programmatically.
There are examples he http://www.contextures.com/excelfiles.html Under 'Filters', look for "FL0002 - Product List by Week Number" and "FL0005 - Phone List for Selected Name" Stephen Hancock wrote: I have Worksheet 2 with a lot of data. I need to have an input cell on WS1 where I can input serch criteria ("text") as needed and it will then show the results on WS1. Any help would be appreciated! -- Debra Dalgleish Contextures http://www.contextures.com/tiptech.html |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Dear Bebra
Thanks. The only change i need to make to FL0005 is to be able to populate the criteria in C3 from another cell. The reason is that the worksheet will be under an Xcelsius file and I need to input the criteria at the Xcelsius level which wll populate C3. Is this possible? "Debra Dalgleish" wrote: You can do this with an Advanced Filter, manually or programmatically. There are examples he http://www.contextures.com/excelfiles.html Under 'Filters', look for "FL0002 - Product List by Week Number" and "FL0005 - Phone List for Selected Name" Stephen Hancock wrote: I have Worksheet 2 with a lot of data. I need to have an input cell on WS1 where I can input serch criteria ("text") as needed and it will then show the results on WS1. Any help would be appreciated! -- Debra Dalgleish Contextures http://www.contextures.com/tiptech.html |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Perhaps you could change the cell so it links to the Xcelsius file, and
use the Worksheet_Calculate event instead of Worksheet_Change. For example: '============================ Private Sub Worksheet_Calculate() Application.EnableEvents = True On Error GoTo errHandler Dim wsD As Worksheet Dim wsC As Worksheet Set wsD = Worksheets("Data Entry") Set wsC = Worksheets("Customers") wsC.Range("Database") _ .AdvancedFilter Action:=xlFilterCopy, _ CriteriaRange:=wsD.Range("C2:C3"), _ CopyToRange:=wsD.Range("A6:D6"), _ Unique:=False Exit Sub errHandler: Application.EnableEvents = True MsgBox "Names were not retrieved" End Sub '=============================== Stephen Hancock wrote: Dear Bebra Thanks. The only change i need to make to FL0005 is to be able to populate the criteria in C3 from another cell. The reason is that the worksheet will be under an Xcelsius file and I need to input the criteria at the Xcelsius level which wll populate C3. Is this possible? "Debra Dalgleish" wrote: You can do this with an Advanced Filter, manually or programmatically. There are examples he http://www.contextures.com/excelfiles.html Under 'Filters', look for "FL0002 - Product List by Week Number" and "FL0005 - Phone List for Selected Name" Stephen Hancock wrote: I have Worksheet 2 with a lot of data. I need to have an input cell on WS1 where I can input serch criteria ("text") as needed and it will then show the results on WS1. Any help would be appreciated! -- Debra Dalgleish Contextures http://www.contextures.com/tiptech.html -- Debra Dalgleish Contextures http://www.contextures.com/tiptech.html |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Using a cell reference to copy rows to a new worksheet | Excel Discussion (Misc queries) | |||
The filter didn't show all (2,254) names when I set it up | Excel Discussion (Misc queries) | |||
Excel filter dropdown shows all data | Excel Worksheet Functions | |||
Text on cart based on data in a cell | Charts and Charting in Excel | |||
Pivot Table Data Filter Problem | Excel Discussion (Misc queries) |