Illegal panel structure is nested within the previous dim...
Posted: Wed Mar 07, 2012 3:10 am
I have this file dimple file:
When I execute this command:
I have this error message:
Any ideas ?
I want EViews to create an id like this 1972-512-78430-78439 (for the first line)
In fact, it works only if I specify only dim_2101 after @id, if I specify more than 1 dimension, I have this error message
The problem come from dim_2102, dim_2103 and dim_2104 wich contains a unique code for each dim (but If I concaten with dim_2101 it's unique and it should works !)
Code: Select all
data_id value dim_2101 dim_2102 dim_2103 dim_2104
4 3 1972 512 78430 78439
5 4 1973 512 78430 78439
6 5 1974 512 78430 78439
7 6 1975 512 78430 78439
8 7 1976 512 78430 78439
Code: Select all
wfopen(type=text) "c:\Src.txt" delim=space @id dim_2101 dim_2102 dim_2103 dim_2104Code: Select all
'Illegal panel structure DIM_2104 is nested within the previous dimensions of the panel structure'I want EViews to create an id like this 1972-512-78430-78439 (for the first line)
In fact, it works only if I specify only dim_2101 after @id, if I specify more than 1 dimension, I have this error message
The problem come from dim_2102, dim_2103 and dim_2104 wich contains a unique code for each dim (but If I concaten with dim_2101 it's unique and it should works !)