|
Use a RETAIN statement. E.g.:
data mydata;
retain var1 var2 var3; * your variables in the desirable order;
set mydata;
run;
HTH,
Vadim
Simon.Gillow@BBG.CO.UK (Simon Gillow) wrote in message news:<0080080004549296000002L862*@MHS>...
> This should be a very simple request but despite my searching I can't find a
> solution.
>
> I would like to change the order of variables in a dataset when viewed in
> FSVIEW. The dataset already exists so I don't think I can use an attrib
> statement.
>
> Any help to this annoyingly simple and straighforward request will be
> appreciated.
>
> Regards,
>
> Simon
|