Search found 3 matches
- Thu Feb 11, 2010 7:03 pm
- Forum: Technical / Scripting
- Topic: Array (?) help
- Replies: 6
- Views: 5669
There are Macro Scheduler functions that don't deal with arrays directly. I've found the only safe way to deal with arrayed variables in a loop is to use Let> to create a benign variable and use that variable in the loop. for example: let>Countup=1 Repeat>Countup let>Countup=Countup+1 dderequest>Ex...
- Wed Dec 30, 2009 8:19 pm
- Forum: Technical / Scripting
- Topic: Array (?) help
- Replies: 6
- Views: 5669
Already did that. The variables are all being assigned correctly. However, I do think I have found the problem. A line that I stripped out seems to be resetting the variable rather than what it is intended to do. The culprit: stringreplace>celldata_%Countitup%,CRLF,,celldata_%Countitup% That doesn't...
- Wed Dec 30, 2009 7:25 pm
- Forum: Technical / Scripting
- Topic: Array (?) help
- Replies: 6
- Views: 5669
Array (?) help
I am pretty sure that I am simply not understanding how something works, but I have run into a problem I cannot find a way around. My code, stripped down to the basics: MaxCount is passed as an option. let>Countup=1 Repeat>Countup let>Countup=Countup+1 dderequest>Excel,MyFile.xls,R%Countup%C1,cellda...