Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
353 views

submit SAS code or macro from Toolbar

Is it possible to allocate a SAS script or macro to a Toolbar button in Base SAS? ie can you 'dm' a macro or sas script?
4
votes
3answers
129 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 ...
4
votes
3answers
234 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
297 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 = ...
4
votes
3answers
4k views

SAS: Calling one macro from another…Order of Macro Definitions

In my code I have several macros. Macro A is the main macro. Macro A then calls macro B which in turn calls macro C. In SAS, do I have to define them in backwards order? In other words, do I ...
3
votes
2answers
423 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)] ...
3
votes
2answers
214 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
1answer
525 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 ...
2
votes
8answers
7k views

Using SAS Macro to pipe a list of filenames from a Windows directory

I am trying to amend the macro below to accept a macro parameter as the 'location' argument for a dir command. However I cannot get it to resolve correctly due to the nested quotes issue. Using ...
2
votes
3answers
376 views

Can I change the execution order of the CALL EXECUTE stack in SAS?

I'm using SAS 9.1.3 to call a macro in a DATA step, but the macro generates a PROC REPORT step, so I am using CALL EXECUTE to call it, generate all those PROC REPORT steps, and then execute them all ...
2
votes
3answers
621 views

Referencing a remote SAS work library from another session

Ever had a problem with a SAS session, but been unable to close the session due to having critical files in your remote work library (RWORK)?? I certainly have! So how do you access that library from ...
2
votes
1answer
470 views

How do you assign the result of a macro function to a macro variable in SAS?

I have a macro that creates a timestamp (to append to output file names). However, rather than have to remember what macro variable the macro assigns the value to, I would prefer to assign a macro ...
1
vote
3answers
133 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 ...
1
vote
1answer
72 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 ...
1
vote
4answers
402 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 ...
1
vote
2answers
201 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
vote
3answers
2k views

SAS Macro GLOBAL scope

is there a short way to make ALL macro variables created inside a macro global in scope? ie: %macro x; %global _all_; * ??? ; %let x=1; %let y=1; %let z=1; %mend;
1
vote
3answers
553 views

In SAS, outside of a data step, what is the best way to replace a character in a macro variable with a blank?

It seems that TRANSLATE would be a good function to use. However when using %SYSFUNC with this function, the parameters are not surrounded with quotes. How do you indicate a blank should be used as ...
0
votes
2answers
56 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. ...
0
votes
2answers
190 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, ...
0
votes
2answers
387 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 ...
0
votes
1answer
246 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 ...