Tag: loop
Excel VBA – Create A Basic Array Part 2
‘Yesterday, we learned how to create a basic array in Excel VBA. ‘Today we are going to actually do something with it. ‘Let’s highlight the rows of the people that are over 35. Here we go. Sub CollectRowValuesInAnArray() Dim startrow As Long Dim lastrow As Long Dim myArray() Dim a As Long Dim i As […]