Page 1 of 1

Sheet view for sVectors dysfunctional?

Posted: Tue May 20, 2014 4:39 am
by ErikG
Hi again,

I'm having some trouble with the sheet view for svectors. When I run this short program:

WfCreate(wf=annual, page=test) a 1950 2030
SVector(2) svMyVector
svMyVector(1) = "GDP"
svMyVector(2) = "Income"

svMyVector.sheet


I get an error message:
"SHEET is not a valid view for svmyvector in "DO_ SVMYVECTOR.SHEET"

Re: Sheet view for sVectors dysfunctional?

Posted: Tue May 27, 2014 9:44 am
by EViews Jason
It'll be fixed in the next patch

Re: Sheet view for sVectors dysfunctional?

Posted: Tue Sep 09, 2014 5:00 am
by ErikG
Hi again, the sheet view for strings is dysfunctional in my version of Eviews.

Code: Select all

WfCreate(wf=unstruct, page=test) u 10 String sMyString = "Show me my string" sMyString.sheet
Eviews 8, standard edition, aug 29 build

Re: Sheet view for sVectors dysfunctional?

Posted: Tue Sep 09, 2014 10:40 am
by EViews Glenn
Sorry. The command was changed pre-release as it really isn't a spreadsheet view, and the docs weren't updated. The correct command is string, as in

Code: Select all

sMyString.string

Re: Sheet view for sVectors dysfunctional?

Posted: Wed Sep 10, 2014 3:38 am
by ErikG
Ok, thanks