Page 1 of 1

How to skip part of the program?

Posted: Tue Jan 04, 2011 8:23 am
by Liu
Hi.
I just wonder if there is an unconditional GO TO type of command that allows the program to run from a certain line.

The reason is that, suppose I have a thousand lines in my program, and I want to run only from line 200 to 300.
I can "comment selection" from 1 to line 199 and from 301 to the end. But as the entire program is long, it becomes difficult.
So is there a command that runs only a block of the entire program?

Thank you in advance.
Liu.

Re: How to skip part of the program?

Posted: Tue Jan 04, 2011 8:57 am
by EViews Gareth
Unfortunately not. You'd have to either use if then endif statements, or comments, or just copy and paste that part to another program.

Re: How to skip part of the program?

Posted: Wed Jan 05, 2011 4:04 pm
by Liu
Thanks for your answer!