I would like to build an excel VBA program to find all the match values from a table and print the finding on a column... I tried to use vlookup but only gives me the first location that finds... and I would like all the finds.
here is an example: my table starts on cell A2
- column A (number)
- 0084
- 0084
- 0085
- 0085
- 0086
0087
column B (location)
- 12AC5
- 16AC5
- 02AC5
- 06AC5
- 01DC5
- 11DC5
on column D I paste the values I am looking for there location..... on column F would give me all the location found that matches my request... in ascending order or any order
for example I am looking for the location of 2 numbers:
- column D (I paste the number that I what to see there location
- 0084
- 0087
I expect to see the results:
- column F(found location)
- 12ac5
- 12bd5
- 16ac5
Any help with this would be very much appreciated..
Cheers, JFFC excel VBA
enter code here