Goodday,
Iv'e discovered VBA a week ago, and have made some progress, but still lack massive amounts of basic knowledge in both Excel and VBA.
Brief overview: I have created a userform with a combobox, from which the user can select a town name, the end result being that the userform will then display a name of an attorney that works in that area. That is the big picture.
But what is relevant, is that i have now created a function in my module1 (getListCloseTown), to it is given the name of the town(townName) selected(i will call it from the useform later, for now i am just testing it by giving it names in the module). This function must then go to a table on the sheet(WC Close Relevant) and scroll down the C column, in which all the town names are found, untill it finds the town. It then, via code i will display just now, gathers that town and various town names right of that name into a dynamic Array (NamesOfCloseTowns). The other town names, are towns that fall within close proximity to the original name. I now have all these names recorded in my dynamic array, as mentioned above.
Below it what I have described so far. I have tested it with the debugger, and it seems to work.
,
,![]()
Dim NamesOfCloseTowns() As String Sub getListCloseTowns(townName As String) Dim i As Integer Dim j As Integer Dim k As Integer Dim l As Integer i = 1 j = 3 k = 0 l = 0 For i = 1 To 100 If Sheets("WC Close Relevant").Cells(i, 3).Value = townName Then While WorksheetFunction.IsText(Sheets("WC Close Relevant").Cells(i, j).Value) 'counts available towns j = j + 1 Wend ReDim NamesOfCloseTowns(j) For k = 1 To (j - 3) NamesOfCloseTowns(k) = Sheets("WC Close Relevant").Cells(i, k + 2).Value Next k Exit For End If Next i End Sub
My first problem now arises, I have all the town names, but now need to go to an other sheet(Attorneys). It's D column contains names of town, and it's G column contains names of attorneys. Note that more than one attorney may live in an town, so town names are repeated in the D column. I need a similar thing to happen as above, in the end I need an dynamic array that will contain all the names of all the attorneys from all the relevant town.
[so if my towns are A and E. and in A lives mr.80 and mrs.90, and in D lives mr.33. Then in the end the array must contain; mr.80,mrs.90,mr.33]
I was hoping to use a similar code that i used to find the town names, but then got a very confused.
Problem 1: How do I use the dynamic array populated with data in the first function in the second function?(I figured I should just be able to use it's name, but then how do I know how long it is, for it is not set, and the counter used was defined in the previous function)
Problem 2: The first function was just given a string, to find an array. Now this function i given an array, to find an even bigger array. This also got me. I did some reading and found multiple arrays, I am not sure if those will be practical for this example?
I know I have given a lot of info, hope it makes sence.
Any advice or help that can point me in the right direction will be much appreciated
Thank you![]()
Bookmarks