Search found 2 matches

by LionelR
Sat Jun 27, 2015 8:56 am
Forum: CATS Questions
Topic: Running CATS in a DO loop
Replies: 2
Views: 42695

Re: Running CATS in a DO loop

Thanks Tom for your quick reply. I got it working now. The reason was that, using the out of the box CATS procedure, I had to manually end CATS at each iteration, which wasn't on my radar. I worked around it by just skipping the "eternal CATS loop" in CATSmenu.src with a BREAK instruction ...
by LionelR
Fri Jun 26, 2015 12:28 pm
Forum: CATS Questions
Topic: Running CATS in a DO loop
Replies: 2
Views: 42695

Running CATS in a DO loop

Hi, I need to run CATS procedures over a large number of datasets. I tried to achieve this with a DO loop, which has the following structure (simplified) source(noecho) "C:\Program Files (x86)\CATS2\CATS.src" DO i = 1,20 DEC STRING FNAME COMP FNAME = %dataset(i)+".xls" open data ...