Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Excel 2003
Is there a way to "capture" programatically the list of values that results when you use the "Find All" button in the Find dialog? The desired values are spread all over the worksheet pretty much at random. I would like to reproduce the values (or, if necessary, the Book/Sheet/Name/Cell/Value/Formulas) in a simple list or table on a separate worksheet, in the order shown in the Find All results dialog. Thanks. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Nope, excel doesn't expose that "find all" to VBA.
But you could just repeat the find until you find the first one. Take a look at FindNext in VBA's help. wal wrote: Excel 2003 Is there a way to "capture" programatically the list of values that results when you use the "Find All" button in the Find dialog? The desired values are spread all over the worksheet pretty much at random. I would like to reproduce the values (or, if necessary, the Book/Sheet/Name/Cell/Value/Formulas) in a simple list or table on a separate worksheet, in the order shown in the Find All results dialog. Thanks. -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks. I used the suggested sample macro as the basis for what I
needed to do, and it works fine. On Nov 23, 11:30*am, Dave Peterson wrote: Nope, excel doesn't expose that "find all" to VBA. But you could just repeat the find until you find the first one. *Take a look at FindNext in VBA's help. wal wrote: Excel 2003 Is there a way to "capture" programatically the list of values that results when you use the "Find All" button in the Find dialog? *The desired values are spread all over the worksheet pretty much at random. *I would like to reproduce the values (or, if necessary, the Book/Sheet/Name/Cell/Value/Formulas) in a simple list or table on a separate worksheet, in the order shown in the Find All results dialog. Thanks. -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I should have mentioned this before...
You may want to try Jan Karel Pieterse's FlexFind: http://www.oaltd.co.uk/MVP/ wal wrote: Thanks. I used the suggested sample macro as the basis for what I needed to do, and it works fine. On Nov 23, 11:30 am, Dave Peterson wrote: Nope, excel doesn't expose that "find all" to VBA. But you could just repeat the find until you find the first one. Take a look at FindNext in VBA's help. wal wrote: Excel 2003 Is there a way to "capture" programatically the list of values that results when you use the "Find All" button in the Find dialog? The desired values are spread all over the worksheet pretty much at random. I would like to reproduce the values (or, if necessary, the Book/Sheet/Name/Cell/Value/Formulas) in a simple list or table on a separate worksheet, in the order shown in the Find All results dialog. Thanks. -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Print just the list after performing a "find all" in Excel | Excel Worksheet Functions | |||
Add To "Find & Replace" Drop Down List | Excel Discussion (Misc queries) | |||
I need function that can list the "top ten" highest results | Excel Worksheet Functions | |||
Where can I find a full list of "mso" constants? | Excel Programming |