Ah, Friday afternoons...
Looking for a formula or a VBA function which can search through a column of data, which will have multiple identical entries, and display all results in another location. (Due to the multiple identical entries, VLOOKUP does not appear to be useful.)
Example : Database has two columns; one for "DATE" and one for "TIME".
I would like to create a function which will allow someone to input "DATE" and display all the "TIME" information.
March 31 - 8:00am
March 31 - 8:30am
March 31 - 8:32am
etc.
What I've come up with for steps in this is (assuming variable is found) :
1) Input search variable
2) Search Column for search variable.
3) Count number of times search variable is found.
4) Display results 1-N.
The first three I've figured out. The fourth is where I'm at a loss - displaying a single result is easy, but I've hit a stumbling block as to how to get the function to move down to the next one it may find in a search. Any help would be appreciated.
(Name-calling and mockery is also acceptable, provided that at the end of the name-calling and mockery there's some sort of solution provided. )
Looking for a formula or a VBA function which can search through a column of data, which will have multiple identical entries, and display all results in another location. (Due to the multiple identical entries, VLOOKUP does not appear to be useful.)
Example : Database has two columns; one for "DATE" and one for "TIME".
I would like to create a function which will allow someone to input "DATE" and display all the "TIME" information.
March 31 - 8:00am
March 31 - 8:30am
March 31 - 8:32am
etc.
What I've come up with for steps in this is (assuming variable is found) :
1) Input search variable
2) Search Column for search variable.
3) Count number of times search variable is found.
4) Display results 1-N.
The first three I've figured out. The fourth is where I'm at a loss - displaying a single result is easy, but I've hit a stumbling block as to how to get the function to move down to the next one it may find in a search. Any help would be appreciated.
(Name-calling and mockery is also acceptable, provided that at the end of the name-calling and mockery there's some sort of solution provided. )