![]() |
[HELP WITH ARRAY] Simple for you, very hard for me....please
Help please!!!!.
I have a simple array with name of cities in it. I have in the coloumn "A" a list of city's names. I should verify that every city included in the array can be found in the coloumn "A". How can I do that?. I believe with for, next array.count etc. but I have many difficulties.... Please help!!!!. Thanks in advance. Alex. |
[HELP WITH ARRAY] Simple for you, very hard for me....please
For i = LBound(ary) To UBound(ary)
If IsError(Application.Match(ary(i),Columns(1),0)) Then Msgbox ary(I) & " not found" End If Next i -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Alex" wrote in message oups.com... Help please!!!!. I have a simple array with name of cities in it. I have in the coloumn "A" a list of city's names. I should verify that every city included in the array can be found in the coloumn "A". How can I do that?. I believe with for, next array.count etc. but I have many difficulties.... Please help!!!!. Thanks in advance. Alex. |
Simple for you, very hard for me....please
Alex wrote: I have a simple array with name of cities in it. I have in the coloumn "A" a list of city's names. I should verify that every city included in the array can be found in the coloumn "A". How can I do that?. I believe with for, next array.count etc. but I have many difficulties.... Hello Alex, Good evening. What is the delimiter used in the City Name Array? Anyway, you will be parsing the full array to get the individual names. Use a loop... Dim name() Dim iniLet for m= 0 to numberOfCitiesIntheBigArray inilet=Mid(name(m), 1, 1) if iniLet="A" then List1.additem name(m) Next m '...ListBox, or combo or text box whatever it is Hope this will help |
Simple for you, very hard for me....please
|
Simple for you, very hard for me....please
|
Simple for you, very hard for me....please
Bob Phillips ha scritto: For i = LBound(ary) To UBound(ary) If IsError(Application.Match(ary(i),Columns(1),0)) Then Msgbox ary(I) & " not found" End If Next i -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Alex" wrote in message oups.com... Help please!!!!. I have a simple array with name of cities in it. I have in the coloumn "A" a list of city's names. I should verify that every city included in the array can be found in the coloumn "A". How can I do that?. I believe with for, next array.count etc. but I have many difficulties.... Please help!!!!. Thanks in advance. Alex. Thank you very much. This works!. And it's a very powerful command (Application.Match) that will help me very much in the future. Thanks again, Alex. |
Simple for you, very hard for me....please
|
All times are GMT +1. The time now is 10:34 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com