I'm still using the evaluation script with 13 days left. I hope I can get help ASAP.
This one should be easy.
As in the examples contained within the help of macro scheduler 9, before transfering data from excel to notepad, it asks for a user input.
I want to loop through the rows without requesting a value from user.
The macro will read the cell's value as it loops down. When it hits something empty, it will stop.
I've managed to do it, however in a 'weird' way.
Code: Select all
Let>r=1
Let>recordlen=5
'
' loop till empty cell
'
Repeat>recordlen
DDERequest>Excel,filename,R%r%C12,bvpvmsg,60
press down
wait>0.5
DDERequest>Excel,filename,R%r%C1,record,60
Length>record,recordlen
Let>r=r+1
until>recordlen=2 'empty cell
It works but there's no logic as far as i can see.
In other words, a cell with "abc" has the length of 5.
Apart from this, is there any other way to detect an empty cell?
Regards,
David.