|
Dear EA:
To question 1: Jules has shown you the concatenation operator ||. (!!
works too, by the way.) If you have Version 9 running, check out the
new CAT, CATS, CATT, and CATX functions.
To question 2: Nothing simpler!
ods html body=<filespec>;
<your code here>
ods html close;
Now, if you want *only* the graphs from a larger series of outputs, that
may take a few more statements.
Best,
Roger
EA wrote:
> First:
>
> There is two variables x1 and x2. I want to combine them to new variable.
> For example
> x1=abc
> and
> x2=def
> I want to do new variable like x3=absdef.
> How to do this whit SAS?
>
> Second:
> Is it possible to generate html-file that includes all graphs from output?
> How to do that (IntrNet has installed)
>
> --
> thanks,
> EA
>
>
>
|