Page 1 of 1

eviews

Posted: Sat Nov 19, 2011 1:47 am
by lollolflyfly
done

Re: Need Help ! new to Eviews, don't know what's wrong with

Posted: Sat Nov 19, 2011 2:29 pm
by EViews Gareth
I didn't run your code, but I'll point out that rather than doing:

Code: Select all

if @isobject("blah") delete blah endif
you could do:

Code: Select all

delete(noerr) blah
which will only delete blah if it exists (and won't error if it doesn't).