Here is the line of code to load my array with names starting on column E and going to the last name in the row determined by a loop earlier. The loop calculated "LastColumn". I wanted to call out that it should be looking at the first sheet, although the button to start this is on that page. Not sure if it's needed.
Dim AssociateNameArray As Variant
AssociateNameArray = Worksheets(1).Range(Cells(1, 5), (Cells(1, LastColumn))).Value
This creates a two dimensional array with (1,1) having the first name, (1,2) the second name, and so on.
How do I modify this so that puts the data within the range to a one dimensional array?