A metaprogramming lanuage used in the SAS suite to modify normal SAS code at run-time.

learn more… | top users | synonyms

0
votes
1answer
22 views

How to pass macro variable to PROC SQL on IN statement in WHERE clause on MS SQL Server

I have a table in MS SQL Server that looks like: ID, Code 01, A 02, A 03, B 04, C ... and is defined in SAS as LIBNAME MSSQLDB ODBC CONNECTION=SHAREDREAD COMPLETE='Description=OIPE DW ...
1
vote
2answers
31 views

Define macro upon initially opening SAS

I ran across a really nice macro I'd like to use as a hotkey: %macro closevts / cmd; %local i; %do i=1 %to 20; next "viewtable:"; end; %end; %mend; dm "keydef F12 '%NRSTR(%closevts);"; ...
-8
votes
0answers
66 views

Interesting sas macro

Input requirement: Write a macro called XSCAN which has 3 positional parameters: STRING – A text string containing a list of words. DELIMITER – A single character used to separate the words in ...
1
vote
2answers
74 views

How do you read multiple specific datasets and append to one big dataset?

How do you read multiple specific datasets and append to one big dataset? For example I within a library I have 100s of datasets but I only want to append the datasets that have _du1, _du2 The ...
0
votes
1answer
35 views

Error surrounding use of scan(&varlist) + Comparison of macro variables

As a follow up to this question, for which my existing answer appears to be best: Extracting sub-data from a SAS dataset & applying to a different dataset Given a dataset dsn_in, I currently ...
0
votes
1answer
108 views

Extracting sub-data from a SAS dataset & applying to a different dataset

I have written a macro to use proc univariate to calculate custom quantiles for variables in a dataset (say dsn1) %cust_quants(dsn= , varlist= , quant_list= ). The output is a summary dataset (say ...
5
votes
2answers
108 views

“For in” loop equivalent in SAS 9.3

I'm searching for a while an equivalent of the for in loop (like in Python or in R) in SAS 9.3 macro language. The DO loop seem's to be the solution but did't work exactly as I want. I founded a way ...
2
votes
2answers
134 views

SAS - Creating variables from macro variables

I have a SAS dataset which has 20 character variables, all of which are names (e.g. Adam, Bob, Cathy etc..) I would like a dynamic code to create variables called Adam_ref, Bob_ref etc.. which will ...
0
votes
4answers
133 views

When to use IF or %IF in SAS

I am new to SAS and having a hard time figuring out when should the simple If-Then-else and when should %IF-%THEN-%ELSE should be used. As an example code below: %let inFile = %scan(&sysparm, 1, ...
2
votes
1answer
70 views

Parsing header line separately in SAS

I have input file, in which the first line has header information. (Data values which are tab-separated). Amongst these values, there is an integer value that specifies how the rest of the file should ...
2
votes
1answer
73 views

How to create SAS code the loops on dataset on given libary and list the tables and how many obs in each dataset?

I'm trying to create a macro with library name as input and which loops on all the datasets in that library and lists out the dataset name and number of obs in each dataset... Is there any way to get ...
0
votes
1answer
54 views

Need a SAS macro program to avoid repetition

I have a dataset where some SAS Datastep logic are needed to populate the columns that are missing, or to be derived from exiting columns. The dataset looks more like the below: mpi v1 v2 ...
0
votes
0answers
24 views

while trying to call external sas macro by using %include, it throws syntax error

I am facing abend in my job, while I try to call external macro by using %include in my program. As soon as it starts compiling the sas macro from %include library, it throws error. 1537 +%MACRO ...
0
votes
1answer
71 views

How to compare date values in a macro?

Here is the macro I'm running.... %macro ControlLoop(ds); %global dset nvars nobs; %let dset=&ds; /* Open data set passed as the macro parameter */ ...
0
votes
1answer
92 views

How can I perform a macro for each observation in sas data set?

Here is the macro code..... libname myfmt "&FBRMrootPath./Formats"; %macro CreateFormat(DSN,Label,Start,fmtname,type); options mprint mlogic symbolgen; %If &type='n' %then %do; proc sort ...
0
votes
1answer
116 views

Trying to create a macro with If-Then conditions in SAS

Here is the code I'm using to creat a format..... libname myfmt "&FBRMrootPath./Formats"; %macro Create_Macro(DSN,Label,Start,fmtname,type); options mprint mlogic symbolgen; %If &type='n' ...
2
votes
1answer
49 views

SAS: Keeping observations that have a specified date interval

I have a dataset that looks something this: Unique_ID Date 1 03/23/1995 1 03/27/1995 1 04/14/1995 1 08/29/1995 1 02/14/1996 . ...
2
votes
2answers
227 views

When I am exporting a SAS dataset to csv; it is trimming all the leading spaces in the characters

When I am exporting a SAS dataset to csv; it is trimming all the leading spaces in the characters. Please help me to retain all the leading spaces in the csv output. The statement used is: Proc ...
1
vote
1answer
43 views

Substitute text in a macro variable in SAS

I want to change any instances of a period in a macro variable to underscore. What am I doing wrong? %let pow=0.1; %let x = %sysfunc(tranwrd(&pow,".","_")); %put x=&x; Output: x=0.1
2
votes
2answers
168 views

Using macros in SAS SQL

I am wondering of I can consolidate some code into one PROC SQL statement instead of several back-to-back SQL statements. I am using macro to calculate the age of a participant at date of consent for ...
0
votes
3answers
158 views

How to repeatedly invoke a SAS macro where the second param is the first with - and . removed?

I have a macro that needs two parameters -- a string that can contain dashes and periods, and a cleaned-up version of the same string where any dashes and periods are replaced by underscores. The ...
0
votes
1answer
183 views

In SAS 9.2, How do I clear a a URL fileref?

I wrote a SAS macro kind of like this... %macro (myname=,myurl=); filename myfile URL "&myurl"; data &myname; infile myfile dlm=','; input field1 field2; run; %mend; It ...
0
votes
2answers
112 views

sas macro call macro

Hi I have a program to use one macro to call another one. I have two month(jun12 and jul12) and each month has two parts(1 & 2), I want to do a loop which I construct a macro called"Loop", Inside ...
1
vote
1answer
93 views

Get the name of the SAS program being run

Are there any generic suggestions for identifying the SAS code / program that is being executed? My code will execute within a generic macro, so could be called within a Stored Process, another ...
1
vote
2answers
143 views

Using SAS to delete a text file

Am looking for a piece of code, preferably OS independent and macro based, for deleting a text file (or any file for that matter)
1
vote
2answers
162 views

Categorical variables with macro

I am trying to create categorical variables in sas. I have written the following macro, but I get an error: "Invalid symbolic variable name xxx" when I try to run. I am not sure this is even the ...
0
votes
2answers
230 views

SAS pass column name through variable

I need to pass a column name through a variable. %let dsn=a1234; data temp; set &a1234; if age>=20; run; Where 'a1234' is the column name (present in the file) that I want to use; and ...
0
votes
2answers
309 views

SAS Compare Two Text Files (Unix / Windows)

I need to compare two text files (in different directories) to see if they are different (a binary result is fine). Given a dataset such as the one below, is this possible within a datastep? ...
1
vote
2answers
2k views

SAS macro do loop— import multiple flat files

I have a list of 17 flat files that I'm trying to import into different data sets. All of the files have the same data step, so I'm trying to write a do while loop to import all the files. I've been ...
0
votes
1answer
146 views

SAS: Proc Olap. Non-nway aggregation

I want to make Rolap-cube. After creation of tables, i use macro-generation to write Aggregation statement in proc olap. And see warning and error like this: WARNING: You cannot use NAME "DEFAULT" ...
1
vote
2answers
1k views

SAS Macro - Combining multiple tables into one, controlled by another table

I've come in late to a project and want to write a macro that normalises some data for export to a SQL Server. There are two control tables... - Table 1 (customers) has a list of customer unique ...
0
votes
1answer
110 views

How to set up autocall macros on a 9.3 Unix server

I'm using the enterprise version of SAS (v9.3) and want to set up some generic macros (for logging purposes) so that everyone in the department can use them. I know what I want is the autocall ...
1
vote
1answer
529 views

SAS - Generate Variable File Name Correctly

I'm trying to generate a variable file name. ods pdf file = "D:\FileDirectory\&&mFileNameVariable&I .pdf" notoc; This generates a variable file name but adds a space before the ...
1
vote
2answers
3k views

SAS macros: using macros in proc sql

How to use macros in SQL? (for every thing, that was selected) I mean something like this: &VarTable is a table, which have two variables: (for example) Lib and Table Each observation in ...
0
votes
2answers
317 views

SAS: macro generating data driven subset data files

Using SAS macro, I would like to generate subset of files using data driven method. Can someone direct me where to start? For example, I have a data set like following: data student; var v1 $ v2 $ ...
0
votes
2answers
542 views

After creating a prompt in Enterprise Guide, how can I see the macro variables the prompt creates?

It would be nice to know how to reference the macro variables in other tasks/code nodes.
0
votes
2answers
125 views

invoke function in SAS macro

I have the following SAS prorgram with bugs. proc sql create table sigmav_n as select std(V) as sigmav_new from bb quit ... sysfunc(abs(-sigmac_new))<0.01 Here V is a column name in table bb. ...
1
vote
3answers
1k views

get specfic day of week from the previous week via sas macro

Does any one know how to create macro variable with sas macro process to get specific day of week ? I would like to get Wednesday date of the previous week every time I run the sas macro. For ...
6
votes
3answers
2k views

Macro returning a value

I created the following macro. Proc power returns table pw_cout containing column Power. The data _null_ step assigns the value in column Power of pw_out to macro variable tpw. I want the macro to ...
1
vote
1answer
227 views

SAS -> Shell DB2 Passthrough and macro resolving

I'm trying to automate a job that involves a lot of data being passed across the network and between the actual db2 server and our SAS server. What I'd like to do is take a traditional pass ...
0
votes
2answers
1k views

How to make a SAS macro run through variables/columns?

I am trying my hand at SAS macros for the first time. My basic question is: I have a dataset with some 10000 variables. I need to take each column individually, create a new conditional variable, ...
1
vote
2answers
4k views

SAS variable concatenation through data step

I am looking for a way to create a string variable containing certain values of the dataset while going through the data step. Example data set work.test: AddToStringYN Value Y One ...
4
votes
3answers
1k views

Transform literal date parameter to SAS date value in macro

I want to create a SAS macro which takes a literal date (eg. '31may2011'd) as parameter. Inside the macro I want to transform this into a SAS date value (eg. 18778). %macro ...
4
votes
1answer
672 views

SAS Macro-variable reference concatenation

The following code reads in a cellphone bill from an excel file and do a lot of cleaning / reports. %LET month = March; .......... PROC IMPORT OUT = PHONE.marchmin DATAFILE = ...
3
votes
2answers
986 views

SAS macro variable change + array index

This is related to this question: SAS macro variable change. The code below explains the problem: %macro test (arg=); options mlogic mprint symbolgen; array arraytwo [%EVAL(&arg+1)] ...
1
vote
4answers
534 views

Regex to convert a space separated list to a SQL where clause

I'm almost embarassed, but I'm struggling to create a regular expression to change something like cat dog mouse to a SQL where clause: a.cat=b.cat AND a.dog=b.dog AND a.mouse=b.mouse With ...
2
votes
1answer
933 views

clearing a library which is being used for stored compiled SAS macro

I have a program which creates a stored compiled macro in a library using the syntax: options mstored sasmstore=MyLib; %macro MyMac() /store source des='My Macro'; %let x=1; %mend; However I ...
0
votes
1answer
493 views

Retrieving SAS macro from a catalog

Can anyone provide the syntax for retrieving a SAS Macro from a permanent catalog? (ie copy it into my work.sasmacr location) I don't need this as part of my autocall as I won't always be connecting ...
3
votes
2answers
285 views

SAS macro include guards

In other programming languages such as C++, include guards are used to prevent multiple inclusions of the same code. Like this in C++: #ifndef FOO_INCLUDED #define FOO_INCLUDED .... #endif Does it ...
2
votes
2answers
266 views

sas macro index or other?

I have 169 towns for which I want to iterate a macro. I need the output files to be saved using the town-name (rather than a town-code). I have a dataset (TOWN) with town-code and town-name. Is it ...

1 2