Search found 870 matches

by EViews Jason
Tue May 31, 2011 4:11 pm
Forum: Data Manipulation
Topic: Problem Opening FAME Database
Replies: 2
Views: 2676

Re: Problem Opening FAME Database

we'll get it fixed ASAP
by EViews Jason
Tue May 31, 2011 8:16 am
Forum: Data Manipulation
Topic: thousand separators - dated tables
Replies: 1
Views: 2799

Re: thousand separators - dated tables

via the user interface: 1)freeze the dated data table 2)press ctl+a in the newly created table to select all cells 3)press the cellfmt button in the button bar 4)select the Thousands separator 5)press OK Unfortunately via the command line or program it is more difficult, especially if 'auto format' ...
by EViews Jason
Tue May 24, 2011 3:59 pm
Forum: Data Manipulation
Topic: use Datastream in Eviews
Replies: 1
Views: 2720

Re: use Datastream in Eviews

Having just a Datastream account is not enough. You will also need either a Datafeeds or Dataworks account. My understanding is these accounts have different username and password information. Are you entering your Datafeeds or Dataworks account information?
by EViews Jason
Mon May 23, 2011 8:18 am
Forum: Data Manipulation
Topic: Re: Date from excel copies as alphanumeric data
Replies: 2
Views: 2761

Re: Date from excel copies as alphanumeric data

EViews will bring in all data as numeric if possible. You may have some observations which are not numeric and rather than lose an alphanumeric value, EViews decided to bring in the data as an alpha series. Verify all of the observations are numeric. You also have to option force individual series t...
by EViews Jason
Mon May 23, 2011 8:06 am
Forum: Installation and Registration
Topic: InstallShield Wizard never quit
Replies: 4
Views: 9257

Re: InstallShield Wizard never quit

run EViews7Patch_051111.exe , report successfully, What did you mean by 'report successfully'? Please post a screenshot at the time Installshield appears to hang. Hopefully the screenshot will show this but if not, what was the last instruction or message displayed by Installshield just before or a...
by EViews Jason
Fri May 13, 2011 9:57 am
Forum: Installation and Registration
Topic: EViews7 not starting up
Replies: 11
Views: 14156

Re: EViews7 not starting up

Please check your email for testing instructions
by EViews Jason
Thu May 12, 2011 11:36 am
Forum: Installation and Registration
Topic: EViews7 not starting up
Replies: 11
Views: 14156

Re: EViews7 not starting up

When you created the EViews32.ini file, the 'pool threads' line must be within the 'options' section. Your Ini file should therefore read

Code: Select all

[Options]
Pool Threads=1


Please try that.

Also, is your server intel based?
by EViews Jason
Wed May 11, 2011 10:03 am
Forum: Installation and Registration
Topic: EViews7 not starting up
Replies: 11
Views: 14156

Re: EViews7 not starting up

Actually, regardless if EViews is crashing or not, try making the INI file change.
by EViews Jason
Wed May 11, 2011 9:31 am
Forum: Installation and Registration
Topic: EViews7 not starting up
Replies: 11
Views: 14156

Re: EViews7 not starting up

Is EViews still listed in the task manager as a running process or does EViews in fact crash? If it is crashing try modifying your EViews ini file. Depending on when EViews is crashing, it is possible you may not have one. If one does not exist, it is created on startup. Replace 'myusername' with th...
by EViews Jason
Thu May 05, 2011 2:57 pm
Forum: Data Manipulation
Topic: is there "matplace" for tables??
Replies: 8
Views: 6512

Re: is there "matplace" for tables??

Similarly you could also use tabplace. From the manual: Examples tabplace(table2,table1,"d1","B9","E17") places a copy of the data from cell range B9 to E17 in TABLE1 to TABLE2 at cell D1 tabplace(table3,table1,10,3,9,2,17,5) copies 8 rows of data (from row 9 to row 17)...
by EViews Jason
Tue Mar 22, 2011 8:28 am
Forum: Data Manipulation
Topic: Problem retrieving EcoWin data
Replies: 1
Views: 2610

Re: Problem retrieving EcoWin data

At the time when the fetch is executed either the EcoWin database must be open in EViews, EcoWin is the default database, or EcoWin is listed in the database registry. Are any of the 3 scenarios met?

If so, please send an email to support@eviews.com and a copy of your program.
by EViews Jason
Fri Mar 18, 2011 8:38 am
Forum: Programming
Topic: Delete Empty Rows from a Table
Replies: 3
Views: 4252

Re: Delete Empty Rows from a Table

When you say the first part is not working, do you mean the 'if' statement? This may be intentional, but the code you posted is only checking to see if the first cell in the row is empty. To check an entire row you will need to loop through the remaining cells in the row and verify they are also emp...
by EViews Jason
Fri Mar 04, 2011 3:30 pm
Forum: Bug Reports
Topic: SA bug
Replies: 17
Views: 15510

Re: SA bug

I was also reminded by Gareth, it is possible your data is causing an error in TRAMO which would prevent the creation of seats.itr. To verify this is the case, try performing the same seasonal adjustment on several different series (if possible from a different workfile) and see if you get the same ...
by EViews Jason
Fri Mar 04, 2011 3:12 pm
Forum: Bug Reports
Topic: SA bug
Replies: 17
Views: 15510

Re: SA bug

The error you are seeing is not a result of where EViews is installed but the location of the EViews temp directory. The directory C:\Users\John\AppData\ev_temp\TRAMO either does not exist or you do not have write permissions. If you find you cannot create the directory or change the permissions, as...
by EViews Jason
Fri Mar 04, 2011 3:02 pm
Forum: Programming
Topic: Spool & Loops
Replies: 2
Views: 2752

Re: Spool & Loops

As an alternative to redirecting your printer output to a spool, you could use the spool 'append' command. So instead of

Code: Select all

do {%var}.line(p)

you could use

Code: Select all

myspool.append {%var}.line

Go to advanced search