How do I turn this code into a loop. I have over 100 cells on some of my sheets, so typing out the lines is annoying. How do I code something like this:
array (cell1, cell2, cell3,cell4....)
currentcell =cell1
nextcell =cell2
for array 1 to end do begin
1. Case [currentcell].Address:
[nextcell].Select
2. currentcell:= nextcell
3. nextcell:= <next cell in the array>
end