I need direction on how I could go about collecting each value from cell B8 down through column B until there is no data in the cell. Which is usually around cell “B80” or so. It does change occasionaly, so I want it to be dynamic to compensate for this.
I guess I want to repeat with i until a cell returns “missing value”. I’m just not sure how to approach it.
The final result will put each iteration, or cell into a script generated xml file.
FYI, I’m at work and I do not have access to the Terminal at all.
I get the feeling that the following code is embarrasingly innacurate for what I want to do…
property theRow : 7
tell application "Microsoft Excel"
set i to "Nothing"
set theCol to "B"
repeat until i is missing value
set i to get value of cell (theCol & (theRow + 1))
end repeat
end tell
Any help is much appreciated!
Cheers!