Page 1 of 1

Message Error

Posted: Sat Jan 30, 2016 8:46 pm
by Youssef1
Hello,
I am new user of eviews7 and I just started a new code for my study. Here is what I obtains as error notifications

FIG1 is not defined in "D FIG1". (same message for FIG2, FIG3, ....)
TAB1 is not defined in "D TAB1" (same message for TAB, TAB3, ....)

SPOOL_DESCRTAT is not defined in "D SPOOL_DESCRTAT".
DSPOOL_GSCI_MCO is not defined or is an illegal command in "DSPOOL_GSCI_MCO".

Unmatched curly braces in "tab{!notab" in "TAB{!NOTAB }.LABEL(R)".
Unmatched curly braces in "tab{!notab" in "TAB{!NOTAB }.LABEL(U)".



Here is the begning of my code:


setmaxerrs 300
for !i = 1 to 100
d fig{!i}
d tab{!i}

next

!nofig =0
!notab = 0

for !i = 1 to 100


d spool_descrtat
spool spool_descrtat

d spool_GSCI_MCO
spool spool_GSCI_MCO


'descriptive stats

!notab = !notab +1
freeze(tab{!notab }) surprisestd1.stats
tab{!notab }.label(r)
tab{!notab }.label(u)
spool_descrtat.append tab{!notab }


Any help is much appreciated,

Regards

Re: Message Error

Posted: Sat Jan 30, 2016 9:09 pm
by EViews Gareth
Wherever you are using the

Code: Select all

d
command, change it to:

Code: Select all

d(noerr)

Re: Message Error

Posted: Sat Jan 30, 2016 10:33 pm
by Youssef1
Sorry, I didn't understand !

Re: Message Error

Posted: Sat Jan 30, 2016 10:49 pm
by EViews Gareth
Change

Code: Select all

d fig{!i}
To be

Code: Select all

d(noerr) fig{!i}
And so on

Re: Message Error

Posted: Sat Jan 30, 2016 10:53 pm
by Youssef1
This is the new message that I got:


(NOERR) is not defined in "D (NOERR) FIG1".
(NOERR) is not defined in "D (NOERR) TAB1".

Re: Message Error

Posted: Sun Jan 31, 2016 8:03 am
by EViews Gareth
You have a space.

Re: Message Error

Posted: Sun Jan 31, 2016 9:38 am
by Youssef1
Many thanks. It works perfect :P