2
votes
0answers
19 views
Data step code for metadata administration
I am trying to find and/or create some (presumably DATA Step) code to
create a metadata folder under an existing metadata folder, inheriting
all access rights. I'm sifting through …
2
votes
2answers
59 views
Using set lists (i.e. SET dataset1-datasetn ;)?
in the documentation it says this about the "SET" statement:
Using Data Set Lists with SET...
You can use data set lists with the
SET statement....
For example, se …
2
votes
1answer
97 views
Theta Symbol in a SAS Label?
How do I make the label for a variable display a Greek character.
So I need:
label Theta = <somehex_expression?>;
I'm trying to label the variable named Theta with the …
2
votes
2answers
78 views
Selecting just Numeric or Character variables?
Can anyone please tell me how to select only numeric or character variables?
1
vote
2answers
44 views
How to create a listing of all intervening dates between a start and end date?
I have the following code where I have a tradid with the first date
when the trade was opened and the second date when it was closed (as
shown in the code below).
Data new;
…