Hi,
I have the following issue, I need to loop throught a range and get 2 things done:
1)the value of the cell
2)select the cell (so I know where I am at all times)
this is my first idea
for cell in range("a1:a50")
cell.select
msgbox cell.value
next
but it doesn'work the selection never...